Beispiel #1
0
 public BinaryWhereClause(IWhereFieldReference whereFieldReference, BinarySqlOperand operand, string firstParameterName, string secondParameterName)
 {
     this.whereFieldReference = whereFieldReference;
     this.operand             = operand;
     this.firstParameterName  = firstParameterName;
     this.secondParameterName = secondParameterName;
 }
Beispiel #2
0
 public IsNullClause(IWhereFieldReference whereFieldReference, bool not = false)
 {
     this.whereFieldReference = whereFieldReference;
     this.not = not;
 }
Beispiel #3
0
 public ArrayWhereClause(IWhereFieldReference whereFieldReference, ArraySqlOperand operand, IEnumerable <string> parameterNames)
 {
     this.whereFieldReference = whereFieldReference;
     this.operand             = operand;
     this.parameterNames      = parameterNames;
 }
Beispiel #4
0
 public UnaryWhereClause(IWhereFieldReference whereFieldReference, UnarySqlOperand operand, string parameterName)
 {
     this.whereFieldReference = whereFieldReference;
     this.operand             = operand;
     this.parameterName       = parameterName;
 }