Exemplo n.º 1
0
 public ComparisonCondition(string leftValue, object minValue, object maxValue)
     : this()
 {
     this.LeftValue   = leftValue;
     this.Operator    = ComparisonOperators.Between;
     this.RightValue  = minValue;
     this.RightValue2 = maxValue;
 }
Exemplo n.º 2
0
 public void AddWithValue(string leftValue, qGen.ComparisonOperators compOperator, object rightValue)
 {
     this.Add(new ComparisonCondition(leftValue, compOperator, rightValue));
 }
Exemplo n.º 3
0
 public ComparisonCondition(qGen.SqlModes Mode, string LeftValue, qGen.ComparisonOperators compOperator, object RightValue)
     : this(LeftValue, compOperator, RightValue)
 {
     m_Mode = Mode;
 }
Exemplo n.º 4
0
 public ComparisonCondition(string leftValue, object minValue, object maxValue)
         : this()
 {
         this.LeftValue = leftValue;
         this.Operator = ComparisonOperators.Between;
         this.m_RightValue = minValue;
         this.m_RightValue2 = maxValue;
 }
Exemplo n.º 5
0
 public ComparisonCondition(string leftValue, qGen.ComparisonOperators compOperator, object rightValue)
         : this()
 {
         this.LeftValue = leftValue;
         this.Operator = compOperator;
         this.m_RightValue = rightValue;
 }