/* documentation:http://www.52chloe.com/Wiki/Document */ public static void Main(string[] args) { IDbCommandInterceptor interceptor = new DbCommandInterceptor(); DbInterception.Add(interceptor); SQLiteDemo.Test(); MsSqlDemo.Test(); MySqlDemo.Test(); OracleDemo.Test(); RegisterMappingTypeDemo.RunDemo(); }
/* documentation:http://www.52chloe.com/Wiki/Document */ public static void Main(string[] args) { /* 添加拦截器,输出 sql 语句极其相应的参数 */ IDbCommandInterceptor interceptor = new DbCommandInterceptor(); DbInterception.Add(interceptor); SQLiteDemo.Run(); MsSqlDemo.Run(); MySqlDemo.Run(); OracleDemo.Run(); //RegisterMappingTypeDemo.RunDemo(); }
/* documentation:http://www.52chloe.com/Wiki/Document */ public static void Main(string[] args) { /* 添加拦截器,输出 sql 语句极其相应的参数 */ IDbCommandInterceptor interceptor = new DbCommandInterceptor(); DbConfiguration.UseInterceptors(interceptor); RegisterMappingType(); /* fluent mapping */ DbConfiguration.UseTypeBuilders(typeof(UserMap)); SQLiteDemo.Run(); MsSqlDemo.Run(); MySqlDemo.Run(); PostgreSQLDemo.Run(); OracleDemo.Run(); }