Exemplo n.º 1
0
Arquivo: Select.cs Projeto: bazer/Modl
 public Select(Database database, ModlLayer table, Expression expression)
     : base(database, table)
 {
     this.expression = expression;
     //var parser = new LinqParser<Select>(this);
     //parser.ParseTree(expression);
 }
Exemplo n.º 2
0
Arquivo: Select.cs Projeto: bazer/Modl
 public Select(Database database, ModlLayer table)
     : base(database, table)
 {
     expression = Expression.Constant(this);
 }
Exemplo n.º 3
0
Arquivo: Update.cs Projeto: bazer/Modl
 public Update(Database database, ModlLayer table)
     : base(database, table)
 {
 }
Exemplo n.º 4
0
Arquivo: Insert.cs Projeto: bazer/Modl
 public Insert(Database database, ModlLayer table)
     : base(database, table)
 {
 }
Exemplo n.º 5
0
 public Update(Database database, ModlLayer table) : base(database, table)
 {
 }
Exemplo n.º 6
0
 public Delete(Database database, ModlLayer table) : base(database, table)
 {
 }
Exemplo n.º 7
0
 public Change(Database database, ModlLayer table) : base(database, table)
 {
 }
Exemplo n.º 8
0
 public Insert(Database database, ModlLayer table) : base(database, table)
 {
 }
Exemplo n.º 9
0
 public Query(Database database, ModlLayer table)
 {
     this.provider = database;
     this.table    = table;
 }