-
Notifications
You must be signed in to change notification settings - Fork 8
/
PocosGenerator.Core.csx
1746 lines (1487 loc) · 46.9 KB
/
PocosGenerator.Core.csx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! "netcoreapp2.1"
#r "nuget:System.Configuration.ConfigurationManager,4.5.0"
#r "nuget:Microsoft.Extensions.Configuration.Json,2.1.1"
#r "nuget:System.Data.Common,4.3.0"
#r "nuget:System.Data.SqlClient,4.5.1"
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Globalization;
using System.Text.RegularExpressions;
using Microsoft.Extensions.Configuration;
var Params = new Dictionary<string, string>();
const string ParamSeparator = ":";
foreach (var arg in Args)
{
var index = @arg.IndexOf(ParamSeparator);
if (index > -1){
Params.Add(arg.Substring(0, index).ToLowerInvariant(), arg.Substring(index + 1));
}
}
var options = new PocosGeneratorOptions {
Output = Params.ContainsKey("output") ? Params["output"] : "DbModels.cs",
ConfigFilePath = Params.ContainsKey("config") ? Params["config"] : "appsettings.json",
ConnectionStringName = Params.ContainsKey("connectionstring") ? Params["connectionstring"] : "ConnectionStrings:DefaultConnection",
Namespace = Params.ContainsKey("namespace") ? Params["namespace"] : "Models",
SpClass = Params.ContainsKey("spclass") ? Params["spclass"] : null,
TvpClass = Params.ContainsKey("tvpclass") ? Params["tvpclass"] : null,
DapperContribAttributes = Params.ContainsKey("dapper") && Params["dapper"] == "true",
ClassPrefix = Params.ContainsKey("classprefix") ? Params["classprefix"] : null,
ClassSuffix = Params.ContainsKey("classsufix") ? Params["classsufix"] : null,
GeneratePocos = Params.ContainsKey("pocos") && Params["pocos"] == "false" ? false : true,
IncludeViews = Params.ContainsKey("views") && Params["views"] == "false" ? false : true,
SchemaName = Params.ContainsKey("schema") ? Params["schema"] : null
};
public class PocosGenerator {
private readonly PocosGeneratorOptions _options;
private readonly SchemaReader reader;
private DbConnection _connection;
private StringBuilder builder;
public Tables Tables = null;
private List<string> splist = null;
private Dictionary<string, List<string>> tvplist = null;
public string ConnectionString;
public PocosGenerator(PocosGeneratorOptions options){
_options = options;
reader = GetSchemaReader();
ConnectionString = GetConnectionString();
builder = new StringBuilder();
}
public void GenerateClass(){
builder.AppendLine("// <auto-generated />");
builder.AppendLine("//");
builder.AppendLine("// This file was automatically generated by PocosGenerator.csx, inspired from the PetaPoco T4 Template");
builder.AppendLine("// Do not make changes directly to this file - edit the PocosGenerator.GenerateClass() method in the PocosGenerator.Core.csx file instead");
builder.AppendLine("// ");
builder.AppendLine("");
builder.AppendLine("using System;");
if (_options.DapperContribAttributes) builder.AppendLine("using Dapper.Contrib.Extensions;");
builder.AppendLine("using System.Collections.Generic;");
builder.AppendLine("");
builder.AppendLine($"namespace {_options.Namespace}");
builder.AppendLine("{");
builder.AppendLine(" // ReSharper disable InconsistentNaming");
if (_options.GeneratePocos){
foreach (Table tbl in from t in Tables where !t.Ignore select t){
builder.AppendLine("");
if (_options.DapperContribAttributes) builder.AppendLine($" [Table(\"{tbl.Name}\")]");
builder.AppendLine($" public partial class {tbl.ClassName}");
builder.AppendLine(" {");
foreach(Column col in from c in tbl.Columns where !c.Ignore select c)
{
// Column bindings
if (_options.DapperContribAttributes && col.IsPK){
builder.AppendLine(" [Key]");
}
builder.AppendLine($" public {col.PropertyType}{CheckNullable(col)} {col.PropertyName} {{ get; set; }}");
}
builder.AppendLine(" }");
}
}
if (!string.IsNullOrWhiteSpace(_options.SpClass)){
builder.AppendLine("");
builder.AppendLine(" /// <summary>");
builder.AppendLine($" /// {_options.SpClass} is a static class holding the list of stored procedures of the {_options.ConnectionStringName} database.");
builder.AppendLine(" /// This makes passing paramaters clearer and at the same time will prevent typos and the resulting runtime errors.");
builder.AppendLine(" /// </summary>");
builder.AppendLine(" /// <remarks>");
builder.AppendLine(" /// The class is dynamically generated by running our poco generator");
builder.AppendLine(" /// </remarks>");
builder.AppendLine($" public static partial class {_options.SpClass} {{");
foreach (string sp in splist){
builder.AppendLine($" public const string {CleanUpStoredProcName(sp)} = \"{sp}\";");
}
builder.AppendLine(" }");
}
if (!string.IsNullOrWhiteSpace(_options.TvpClass)){
builder.AppendLine("");
builder.AppendLine(" /// <summary>");
builder.AppendLine($" /// {_options.TvpClass} is a static class holding the list of Table Valued Parameters of the {_options.ConnectionStringName} database.");
builder.AppendLine(" /// This makes calling stored procedures clearer and at the same time will prevent typos and the resulting runtime errors.");
builder.AppendLine(" /// </summary>");
builder.AppendLine(" /// <remarks>");
builder.AppendLine(" /// The class is dynamically generated by running our poco generator");
builder.AppendLine(" /// </remarks>");
builder.AppendLine($" public static partial class {_options.TvpClass} {{");
foreach (var tvp in tvplist){
builder.AppendLine($" public static class {CleanUpTVPName(tvp.Key)} {{");
builder.AppendLine($" public const string Name = \"{tvp.Key}\";");
builder.AppendLine($" public static List<string> Columns = new List<string> {{");
foreach (var column in tvp.Value) {
builder.AppendLine($" \"{column}\",");
}
builder.AppendLine(" };");
builder.AppendLine(" }");
}
builder.AppendLine(" }");
}
builder.AppendLine("}");
}
public bool ReadSchema(){
using (DbConnection conn = InitDbConnection()){
Tables = LoadTables();
splist = LoadStoredProcedures();
tvplist = LoadTVPs();
}
return Tables.Any() || splist.Any() || tvplist.Any();
}
public string Content {get => builder.ToString();}
private SchemaReader GetSchemaReader(){
switch (_options.DbType){
case DatabaseType.MySql: return new MySqlSchemaReader();
case DatabaseType.Oracle: return new OracleSchemaReader();
case DatabaseType.PostgreSQL: return new PostGreSqlSchemaReader();
case DatabaseType.SQL_CE: return new SqlServerCeSchemaReader();
default: return new SqlServerSchemaReader();
}
}
//Todo: add connection types for other Db's
private DbConnection GetDbConnection(){
switch (_options.DbType){
case DatabaseType.MySql:
case DatabaseType.Oracle:
case DatabaseType.PostgreSQL:
case DatabaseType.SQL_CE:
default: return new SqlConnection(ConnectionString);
}
}
public DbConnection InitDbConnection(){
_connection = GetDbConnection();
return _connection;
}
private string GetConnectionString()
{
string separator1 = Path.DirectorySeparatorChar.ToString();
string separator2 = Path.AltDirectorySeparatorChar.ToString();
var path = Directory.GetCurrentDirectory().TrimEnd();
if (!path.EndsWith(separator1) || !path.EndsWith(separator2)){
if (path.Contains(separator2)){
path = path + separator2;
} else {
path = path + separator1;
}
}
var fullPath = Path.GetFullPath(path + _options.ConfigFilePath);
var appSettings = new ConfigurationBuilder().AddJsonFile(fullPath, optional: false).Build();
var connStr = appSettings[_options.ConnectionStringName];
return connStr;
}
private Tables LoadTables()
{
try
{
Tables result;
try
{
_connection.ConnectionString=ConnectionString;
_connection.Open();
result=reader.ReadSchema(_connection);
// Remove unrequired tables/views
for (int i=result.Count-1; i>=0; i--)
{
if (_options.SchemaName!=null && string.Compare(result[i].Schema, _options.SchemaName, true)!=0)
{
result.RemoveAt(i);
continue;
}
if (!_options.IncludeViews && result[i].IsView)
{
result.RemoveAt(i);
continue;
}
}
_connection.Close();
var rxClean = new Regex("^(Equals|GetHashCode|GetType|ToString|repo|Save|IsNew|Insert|Update|Delete|Exists|SingleOrDefault|Single|First|FirstOrDefault|Fetch|Page|Query)$");
foreach (var t in result)
{
t.ClassName = _options.ClassPrefix + t.ClassName + _options.ClassSuffix;
foreach (var c in t.Columns)
{
c.PropertyName = rxClean.Replace(c.PropertyName, "_$1");
// Make sure property name doesn't clash with class name
if (c.PropertyName == t.ClassName)
c.PropertyName = "_" + c.PropertyName;
}
}
}
catch (Exception x)
{
var error=x.Message.Replace("\r\n", "\n").Replace("\n", " ");
WriteLine(string.Format("Failed to load data `{0}`", error));
builder.AppendLine("");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine($"// Failed to load data `{error}`");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine("");
return new Tables();
}
return result;
}
catch (Exception x)
{
var error=x.Message.Replace("\r\n", "\n").Replace("\n", " ");
WriteLine(string.Format("Failed to read database schema - {0}", error));
builder.AppendLine("");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine("// Failed to read database schema - {error}");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine("");
return new Tables();
}
}
private List<string> LoadStoredProcedures()
{
try
{
List<string> result;
_connection.ConnectionString = ConnectionString;
_connection.Open();
result=reader.GetStoredProcedures(_connection);
_connection.Close();
return result;
}
catch (Exception x)
{
var error=x.Message.Replace("\r\n", "\n").Replace("\n", " ");
WriteLine(string.Format("Failed to read database schema - {0}", error));
builder.AppendLine("");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine($"// Failed to read database schema - {error}");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine("");
return new List<string>();
}
}
private Dictionary<string, List<string>> LoadTVPs()
{
try
{
Dictionary<string, List<string>> result;
_connection.ConnectionString = ConnectionString;
_connection.Open();
result=reader.GetTVPs(_connection);
_connection.Close();
return result;
}
catch (Exception x)
{
var error=x.Message.Replace("\r\n", "\n").Replace("\n", " ");
WriteLine(string.Format("Failed to read database schema - {0}", error));
builder.AppendLine("");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine($"// Failed to read database schema - {error}");
builder.AppendLine("// -----------------------------------------------------------------------------------------");
builder.AppendLine("");
return new Dictionary<string, List<string>>();
}
}
private static string CheckNullable(Column col)
{
string result="";
if(col.IsNullable &&
col.PropertyType !="byte[]" &&
col.PropertyType !="string" &&
col.PropertyType !="Microsoft.SqlServer.Types.SqlGeography" &&
col.PropertyType !="Microsoft.SqlServer.Types.SqlGeometry"
)
result="?";
return result;
}
private static Func<string, string> CleanUpStoredProcName = (str) =>
{
if (str.StartsWith("sp_", StringComparison.OrdinalIgnoreCase)) {
str = str.Remove(0, 3);
}
else if (str.StartsWith("sp", StringComparison.OrdinalIgnoreCase)) {
str = str.Remove(0, 2);
}
return str.Replace('.','_');
};
private static Func<string, string> CleanUpTVPName = (str) =>
{
return str.Replace('.','_');
};
}
public enum DatabaseType {
MySql,
SQL_CE,
PostgreSQL,
Oracle,
SQLServer
}
public class PocosGeneratorOptions {
public string Output {get;set;}
public string ConnectionStringName {get;set;}
/// Namespace for the generated class
public string Namespace {get;set;}
public string ClassPrefix {get;set;}
public string ClassSuffix {get;set;}
public string SchemaName {get;set;}
public bool IncludeViews {get;set;}
public bool GeneratePocos {get;set;}
public bool DapperContribAttributes {get;set;}
/// If left blank, class with stored procedure names won't be generated
public string SpClass {get;set;}
/// If left blank, class with Table Valued Parameters won't be generated
public string TvpClass {get;set;}
public DatabaseType DbType {get;set;} = DatabaseType.SQLServer;
/// Relative path to script
public string ConfigFilePath {get;set;}
}
public class Table
{
public List<Column> Columns;
public string Name;
public string Schema;
public bool IsView;
public string CleanName;
public string ClassName;
public string SequenceName;
public bool Ignore;
public Column PK
{
get
{
return this.Columns.SingleOrDefault(x=>x.IsPK);
}
}
public Column GetColumn(string columnName)
{
return Columns.Single(x=>string.Compare(x.Name, columnName, true)==0);
}
public Column this[string columnName]
{
get
{
return GetColumn(columnName);
}
}
}
public class Column
{
public string Name;
public string PropertyName;
public string PropertyType;
public bool IsPK;
public bool IsNullable;
public bool IsAutoIncrement;
public bool Ignore;
}
public class Tables : List<Table>
{
public Tables()
{
}
public Table GetTable(string tableName)
{
return this.Single(x=>string.Compare(x.Name, tableName, true)==0);
}
public Table this[string tableName]
{
get
{
return GetTable(tableName);
}
}
}
static Regex rxCleanUp = new Regex(@"[^\w\d_]", RegexOptions.Compiled);
static Func<string, string> CleanUp = (str) =>
{
str = rxCleanUp.Replace(str, "_");
if (char.IsDigit(str[0])) str = "_" + str;
return str;
};
static string zap_password(string connectionString)
{
var rx = new Regex("password=.*;", RegexOptions.Singleline | RegexOptions.Multiline | RegexOptions.IgnoreCase);
return rx.Replace(connectionString, "password=**zapped**;");
}
public abstract class SchemaReader
{
public abstract Tables ReadSchema(DbConnection connection);
public abstract List<string> GetStoredProcedures(DbConnection connection);
public abstract Dictionary<string, List<string>> GetTVPs(DbConnection connection);
}
public class SqlServerSchemaReader : SchemaReader
{
public override List<string> GetStoredProcedures(DbConnection connection)
{
var result = new List<string>();
_connection = connection;
var cmd = _connection.CreateCommand();
cmd.Connection = connection;
cmd.CommandText = @"SELECT *
FROM INFORMATION_SCHEMA.ROUTINES
WHERE routine_type = 'PROCEDURE'
AND LEFT(Routine_Name, 3) NOT IN ('sp_', 'xp_', 'ms_')
AND LEFT(Routine_Name, 6) NOT IN ('spEMT_', 'spFXT_')
ORDER BY Routine_Name";
// pull the SP list in a reader
using(cmd)
{
using (var rdr = cmd.ExecuteReader())
{
while(rdr.Read())
{
result.Add($"{rdr["Specific_Schema"]}.{rdr["Routine_Name"]}");
}
}
}
return result;
}
public override Dictionary<string, List<string>> GetTVPs(DbConnection connection)
{
var result = new Dictionary<string, List<string>>();
_connection = connection;
var cmd = _connection.CreateCommand();
cmd.Connection = connection;
cmd.CommandText = @"select
s.name as [Schema],
t.name as [Type],
c.name as [Column]
from sys.table_types t
inner join sys.schemas AS s
ON t.[schema_id] = s.[schema_id]
inner join sys.columns c
on c.[object_id] = t.type_table_object_id
where is_user_defined = 1";
// pull the SP list in a reader
using(cmd)
{
using (var rdr = cmd.ExecuteReader())
{
while(rdr.Read())
{
var tvp = $"{rdr["Schema"]}.{rdr["Type"]}";
if (result.ContainsKey(tvp))
{
result[tvp].Add(rdr["Column"].ToString());
}
else
{
result.Add(tvp, new List<string>{ rdr["Column"].ToString() });
}
}
}
}
return result;
}
// SchemaReader.ReadSchema
public override Tables ReadSchema(DbConnection connection)
{
var result=new Tables();
_connection=connection;
var cmd=_connection.CreateCommand();
cmd.Connection=connection;
cmd.CommandText = TABLE_SQL_INCLUDE_VIEWS; //TableCommandText; // Change - Allows the inclusion of views
//cmd.CommandText = TABLE_SQL;
//pull the tables in a reader
using(cmd)
{
using (var rdr=cmd.ExecuteReader())
{
while(rdr.Read())
{
Table tbl=new Table();
tbl.Name=rdr["TABLE_NAME"].ToString();
tbl.Schema=rdr["TABLE_SCHEMA"].ToString();
tbl.IsView=string.Compare(rdr["TABLE_TYPE"].ToString(), "View", true)==0;
tbl.CleanName=CleanUp(tbl.Name);
tbl.ClassName=Inflector.MakeSingular(tbl.CleanName);
tbl.Ignore = true;
result.Add(tbl);
}
}
}
foreach (var tbl in result)
{
tbl.Columns=LoadColumns(tbl);
// Mark the primary key
string PrimaryKey=GetPK(tbl.Name);
var pkColumn=tbl.Columns.SingleOrDefault(x=>x.Name.ToLower().Trim()==PrimaryKey.ToLower().Trim());
if(pkColumn!=null)
{
pkColumn.IsPK=true;
}
}
return result;
}
DbConnection _connection;
List<Column> LoadColumns(Table tbl)
{
using (var cmd=_connection.CreateCommand())
{
cmd.Connection=_connection;
cmd.CommandText=COLUMN_SQL;
var p = cmd.CreateParameter();
p.ParameterName = "@tableName";
p.Value=tbl.Name;
cmd.Parameters.Add(p);
p = cmd.CreateParameter();
p.ParameterName = "@schemaName";
p.Value=tbl.Schema;
cmd.Parameters.Add(p);
//var isFirstColumn = true;
var result = new List<Column>();
using (IDataReader rdr=cmd.ExecuteReader())
{
while(rdr.Read())
{
// Skip Computed Columns from mapping
if (((int)rdr["IsComputed"]) != 1)
{
Column col=new Column();
col.Name=rdr["ColumnName"].ToString();
col.PropertyName=CleanUp(col.Name);
col.PropertyType=GetPropertyType(rdr["DataType"].ToString());
col.IsNullable=rdr["IsNullable"].ToString()=="YES";
col.IsAutoIncrement=((int)rdr["IsIdentity"])==1;
/*if (isFirstColumn && !col.IsAutoIncrement) {
if (col.PropertyType == "Guid") { // || col.PropertyName.ToLower() == "id") {
col.IsAutoIncrement = true;
}
}
isFirstColumn = false;*/
result.Add(col);
}
}
}
return result;
}
}
string GetPK(string table){
string sql=@"SELECT c.name AS ColumnName
FROM sys.indexes AS i
INNER JOIN sys.index_columns AS ic ON i.object_id = ic.object_id AND i.index_id = ic.index_id
INNER JOIN sys.objects AS o ON i.object_id = o.object_id
LEFT OUTER JOIN sys.columns AS c ON ic.object_id = c.object_id AND c.column_id = ic.column_id
WHERE (i.is_primary_key = 1) AND (o.name = @tableName)";
using (var cmd=_connection.CreateCommand())
{
cmd.Connection=_connection;
cmd.CommandText=sql;
var p = cmd.CreateParameter();
p.ParameterName = "@tableName";
p.Value=table;
cmd.Parameters.Add(p);
var result=cmd.ExecuteScalar();
if(result!=null)
return result.ToString();
}
return "";
}
string GetPropertyType(string sqlType)
{
string sysType="string";
switch (sqlType)
{
case "bigint":
sysType = "long";
break;
case "smallint":
sysType= "short";
break;
case "int":
sysType= "int";
break;
case "uniqueidentifier":
sysType= "Guid";
break;
case "smalldatetime":
case "datetime":
case "date":
case "time":
sysType= "DateTime";
break;
case "float":
sysType="double";
break;
case "real":
sysType="float";
break;
case "numeric":
case "smallmoney":
case "decimal":
case "money":
sysType= "decimal";
break;
case "tinyint":
sysType = "byte";
break;
case "bit":
sysType= "bool";
break;
case "image":
case "binary":
case "varbinary":
case "timestamp":
sysType= "byte[]";
break;
case "geography":
sysType = "Microsoft.SqlServer.Types.SqlGeography";
break;
case "geometry":
sysType = "Microsoft.SqlServer.Types.SqlGeometry";
break;
}
return sysType;
}
const string TABLE_SQL_INCLUDE_VIEWS = @"SELECT * FROM INFORMATION_SCHEMA.TABLES ORDER BY TABLE_NAME";
const string TABLE_SQL= @"SELECT *
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE='BASE TABLE' OR TABLE_TYPE='VIEW'
ORDER BY TABLE_NAME";
const string COLUMN_SQL=@"SELECT
TABLE_CATALOG AS [Database],
TABLE_SCHEMA AS Owner,
TABLE_NAME AS TableName,
COLUMN_NAME AS ColumnName,
ORDINAL_POSITION AS OrdinalPosition,
COLUMN_DEFAULT AS DefaultSetting,
IS_NULLABLE AS IsNullable, DATA_TYPE AS DataType,
CHARACTER_MAXIMUM_LENGTH AS MaxLength,
DATETIME_PRECISION AS DatePrecision,
COLUMNPROPERTY(object_id('[' + TABLE_SCHEMA + '].[' + TABLE_NAME + ']'), COLUMN_NAME, 'IsIdentity') AS IsIdentity,
COLUMNPROPERTY(object_id('[' + TABLE_SCHEMA + '].[' + TABLE_NAME + ']'), COLUMN_NAME, 'IsComputed') as IsComputed
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME=@tableName AND TABLE_SCHEMA=@schemaName
ORDER BY OrdinalPosition ASC";
}
public class SqlServerCeSchemaReader : SchemaReader
{
public override List<string> GetStoredProcedures(DbConnection connection)
{
return new List<string>();
}
public override Dictionary<string, List<string>> GetTVPs(DbConnection connection)
{
return new Dictionary<string, List<string>>();
}
// SchemaReader.ReadSchema
public override Tables ReadSchema(DbConnection connection)
{
var result=new Tables();
_connection=connection;
var cmd=_connection.CreateCommand();
cmd.Connection=connection;
cmd.CommandText=TABLE_SQL;
//pull the tables in a reader
using(cmd)
{
using (var rdr=cmd.ExecuteReader())
{
while(rdr.Read())
{
Table tbl=new Table();
tbl.Name=rdr["TABLE_NAME"].ToString();
tbl.CleanName=CleanUp(tbl.Name);
tbl.ClassName=Inflector.MakeSingular(tbl.CleanName);
tbl.Schema=null;
tbl.IsView=false;
result.Add(tbl);
}
}
}
foreach (var tbl in result)
{
tbl.Columns=LoadColumns(tbl);
// Mark the primary key
string PrimaryKey=GetPK(tbl.Name);
var pkColumn=tbl.Columns.SingleOrDefault(x=>x.Name.ToLower().Trim()==PrimaryKey.ToLower().Trim());
if(pkColumn!=null)
pkColumn.IsPK=true;
}
return result;
}
DbConnection _connection;
List<Column> LoadColumns(Table tbl)
{
using (var cmd=_connection.CreateCommand())
{
cmd.Connection=_connection;
cmd.CommandText=COLUMN_SQL;
var p = cmd.CreateParameter();
p.ParameterName = "@tableName";
p.Value=tbl.Name;
cmd.Parameters.Add(p);
var result=new List<Column>();
using (IDataReader rdr=cmd.ExecuteReader())
{
while(rdr.Read())
{
Column col=new Column();
col.Name=rdr["ColumnName"].ToString();
col.PropertyName=CleanUp(col.Name);
col.PropertyType=GetPropertyType(rdr["DataType"].ToString());
col.IsNullable=rdr["IsNullable"].ToString()=="YES";
col.IsAutoIncrement=rdr["AUTOINC_INCREMENT"]!=DBNull.Value;
result.Add(col);
}
}
return result;
}
}
string GetPK(string table){
string sql=@"SELECT KCU.COLUMN_NAME
FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE KCU
JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS TC
ON KCU.CONSTRAINT_NAME=TC.CONSTRAINT_NAME
WHERE TC.CONSTRAINT_TYPE='PRIMARY KEY'
AND KCU.TABLE_NAME=@tableName";
using (var cmd=_connection.CreateCommand())
{
cmd.Connection=_connection;
cmd.CommandText=sql;
var p = cmd.CreateParameter();
p.ParameterName = "@tableName";
p.Value=table;
cmd.Parameters.Add(p);
var result=cmd.ExecuteScalar();
if(result!=null)
return result.ToString();
}
return "";
}
string GetPropertyType(string sqlType)
{
string sysType="string";
switch (sqlType)
{
case "bigint":
sysType = "long";
break;
case "smallint":
sysType= "short";
break;
case "int":
sysType= "int";
break;
case "uniqueidentifier":
sysType= "Guid";
break;
case "smalldatetime":
case "datetime":
case "date":
case "time":
sysType= "DateTime";
break;
case "float":
sysType="double";
break;
case "real":
sysType="float";
break;
case "numeric":
case "smallmoney":
case "decimal":
case "money":
sysType= "decimal";
break;
case "tinyint":
sysType = "byte";
break;
case "bit":
sysType= "bool";
break;
case "image":
case "binary":
case "varbinary":
case "timestamp":
sysType= "byte[]";
break;
}
return sysType;
}
const string TABLE_SQL=@"SELECT *
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE='TABLE'";
const string COLUMN_SQL=@"SELECT
TABLE_CATALOG AS [Database],
TABLE_SCHEMA AS Owner,
TABLE_NAME AS TableName,
COLUMN_NAME AS ColumnName,
ORDINAL_POSITION AS OrdinalPosition,
COLUMN_DEFAULT AS DefaultSetting,
IS_NULLABLE AS IsNullable, DATA_TYPE AS DataType,
AUTOINC_INCREMENT,
CHARACTER_MAXIMUM_LENGTH AS MaxLength,
DATETIME_PRECISION AS DatePrecision
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME=@tableName
ORDER BY OrdinalPosition ASC";
}
public class PostGreSqlSchemaReader : SchemaReader
{
public override List<string> GetStoredProcedures(DbConnection connection)
{
return new List<string>();
}
public override Dictionary<string, List<string>> GetTVPs(DbConnection connection)
{
return new Dictionary<string, List<string>>();
}
// SchemaReader.ReadSchema
public override Tables ReadSchema(DbConnection connection)
{
var result=new Tables();
_connection=connection;
var cmd=_connection.CreateCommand();
cmd.Connection=connection;
cmd.CommandText=TABLE_SQL;
//pull the tables in a reader
using(cmd)
{
using (var rdr=cmd.ExecuteReader())
{
while(rdr.Read())
{
Table tbl=new Table();
tbl.Name=rdr["table_name"].ToString();
tbl.Schema=rdr["table_schema"].ToString();
tbl.IsView=string.Compare(rdr["table_type"].ToString(), "View", true)==0;
tbl.CleanName=CleanUp(tbl.Name);
tbl.ClassName=Inflector.MakeSingular(tbl.CleanName);
result.Add(tbl);
}
}
}
foreach (var tbl in result)
{
tbl.Columns=LoadColumns(tbl);
// Mark the primary key
string PrimaryKey=GetPK(tbl.Name);
var pkColumn=tbl.Columns.SingleOrDefault(x=>x.Name.ToLower().Trim()==PrimaryKey.ToLower().Trim());
if(pkColumn!=null)
pkColumn.IsPK=true;
}