public DbCommandGrammar(DatabaseFixture fixture, MethodInfo method, CommandType commandType, ExternalParameter[] externals, string sql)
 {
     _fixture     = fixture;
     _method      = method;
     _commandType = commandType;
     _sql         = sql;
     External.AddRange(externals);
 }
Esempio n. 2
0
 public DatabaseOperationExpression(DatabaseFixture parent, string sql, CommandType commandType)
 {
     _parent      = parent;
     _sql         = sql;
     _commandType = commandType;
 }