Represents a predicates for the BETWEEN SQL operator.
Default constructor
public Void BetweenPredicate()
Initializes a new instance of BetweenPredicate.
public Void BetweenPredicate(col, value1, value2)
Name | Type | Summary |
---|---|---|
col | PredicateColumn | The column object. |
value1 | Object | The first value for the predicate. |
value2 | Object | The second value for the predicate. |
Initializes a new instance of BetweenPredicate.
public Void BetweenPredicate(col, value1, value2, negate)
Name | Type | Summary |
---|---|---|
col | PredicateColumn | The column object. |
value1 | Object | The first value for the predicate. |
value2 | Object | The second value for the predicate. |
negate | Boolean | Indicates whether the condition must be negated. |
Initializes a new instance of BetweenPredicate.
public Void BetweenPredicate(col, value1, value2, negate, useParenthesis)
Name | Type | Summary |
---|---|---|
col | PredicateColumn | The column object. |
value1 | Object | The first value for the predicate. |
value2 | Object | The second value for the predicate. |
negate | Boolean | Indicates whether the condition must be negated. |
useParenthesis | Boolean | Indicates whether the clause must be enclosed in parenthesis. |
Initializes a new instance of BetweenPredicate.
public Void BetweenPredicate(rel, col, value1, value2)
Name | Type | Summary |
---|---|---|
rel | RelationalOperator | The relation between predicates. |
col | PredicateColumn | The column object. |
value1 | Object | The first value for the predicate. |
value2 | Object | The second value for the predicate. |
Initializes a new instance of BetweenPredicate.
public Void BetweenPredicate(rel, col, value1, value2, negate)
Name | Type | Summary |
---|---|---|
rel | RelationalOperator | The relation between predicates. |
col | PredicateColumn | The column object. |
value1 | Object | The first value for the predicate. |
value2 | Object | The second value for the predicate. |
negate | Boolean | Indicates whether the condition must be negated. |
Initializes a new instance of BetweenPredicate.
public Void BetweenPredicate(rel, col, value1, value2, negate, useParenthesis)
Name | Type | Summary |
---|---|---|
rel | RelationalOperator | The relation between predicates. |
col | PredicateColumn | The column object. |
value1 | Object | The first value for the predicate. |
value2 | Object | The second value for the predicate. |
negate | Boolean | Indicates whether the condition must be negated. |
useParenthesis | Boolean | Indicates whether the clause must be enclosed in parenthesis. |
Column on which the predicate acts on.
public PredicateColumn Column { get; set; }
Indicates whether the condition must be negated.
public Boolean Negate { get; set; }
First value for the predicate.
public Object Value1 { get; set; }
Second value for the predicate.
public Object Value2 { get; set; }
In this document