protected SqlDeleteBuilderBase Where(IEnumerable <Operator> operators) { WhereBlock.AddRange(operators); CurrentPosition = SqlDeletePosition.Where; return(this); }
protected SqlInsertBuilderBase Where(params Operator[] operators) { WhereBlock.AddRange(operators); CurrentPosition = SqlInsertPosition.Where; return(this); }
private SqlUpdateBuilderBase Where(IEnumerable <Operator> operators) { WhereBlock.AddRange(operators); CurrentPosition = SqlUpdatePosition.Where; return(this); }