Пример #1
0
 public DbContext(IDbConnection connection)
 {
     DbConnection = connection;
     DbSet        = new ExpressionSql(DBType);
 }
Пример #2
0
 public DbContext(int type, IDbConnection connection)
 {
     DbConnection = connection;
     DbSet        = new ExpressionSql(type);
 }