Пример #1
0
 protected SqlDeleteBuilderBase Where(IEnumerable <Operator> operators)
 {
     WhereBlock.AddRange(operators);
     CurrentPosition = SqlDeletePosition.Where;
     return(this);
 }
Пример #2
0
 protected SqlInsertBuilderBase Where(params Operator[] operators)
 {
     WhereBlock.AddRange(operators);
     CurrentPosition = SqlInsertPosition.Where;
     return(this);
 }
Пример #3
0
 private SqlUpdateBuilderBase Where(IEnumerable <Operator> operators)
 {
     WhereBlock.AddRange(operators);
     CurrentPosition = SqlUpdatePosition.Where;
     return(this);
 }