55using System . Reflection . Emit ;
66using NUnit . Framework ;
77using ServiceStack . Common . Tests ;
8- using ServiceStack . OrmLite ;
8+ // using ServiceStack.OrmLite;
99using ServiceStack . Reflection ;
1010
1111namespace ServiceStack . Text . TestsConsole
@@ -14,7 +14,7 @@ class Program
1414 {
1515 public static void Main ( string [ ] args )
1616 {
17- PrintDumpColumnSchema ( ) ;
17+ // PrintDumpColumnSchema();
1818
1919 //var da = AppDomain.CurrentDomain.DefineDynamicAssembly(new AssemblyName("dyn"), AssemblyBuilderAccess.Save);
2020
@@ -62,19 +62,19 @@ public void Compare_interpolation_vs_string_Concat()
6262
6363 public static object SimpleConcat ( string text ) => "Hi " + text ;
6464
65- public static void PrintDumpColumnSchema ( )
66- {
67- var dbFactory = new OrmLiteConnectionFactory ( ":memory:" ,
68- SqliteDialect . Provider ) ;
69-
70- using var db = dbFactory . Open ( ) ;
71- db . CreateTableIfNotExists < Person > ( ) ;
72-
73- ColumnSchema [ ] columnSchemas = db . GetTableColumns < Person > ( ) ;
74-
75- columnSchemas . Each ( x => x . ToString ( ) . Print ( ) ) ;
76- columnSchemas . Each ( x => x . PrintDump ( ) ) ;
77- }
65+ // public static void PrintDumpColumnSchema()
66+ // {
67+ // var dbFactory = new OrmLiteConnectionFactory(":memory:",
68+ // SqliteDialect.Provider);
69+ //
70+ // using var db = dbFactory.Open();
71+ // db.CreateTableIfNotExists<Person>();
72+ //
73+ // ColumnSchema[] columnSchemas = db.GetTableColumns<Person>();
74+ //
75+ // columnSchemas.Each(x => x.ToString().Print());
76+ // columnSchemas.Each(x => x.PrintDump());
77+ // }
7878
7979 public class Person
8080 {
0 commit comments