protected virtual Expression VisitTable(TableExpression table)
 {
     return(table);
 }
Beispiel #2
0
 protected CDUCommandExpression(TableExpression table, object instance, DbExpressionType nodeType, Type type)
     : base(nodeType, type)
 {
     this.table    = table;
     this.instance = instance;
 }
Beispiel #3
0
 public InsertCommand(TableExpression table, IEnumerable <ColumnAssignment> assignments, object instance)
     : base(table, instance, DbExpressionType.Insert, typeof(int))
 {
     this.assignments = assignments.ToReadOnly();
 }
Beispiel #4
0
 public DeleteCommand(TableExpression table, Expression where, object instance, bool supportsVersionCheck)
     : base(table, instance, DbExpressionType.Delete, typeof(int))
 {
     this.where           = where;
     SupportsVersionCheck = supportsVersionCheck;
 }