Represents a condition predicate that applies a decoration to the column.
Initializes a new instance of DecoratedColumnPredicate.
public Void DecoratedPredicate(column, op, value, useParenthesis)
Name | Type | Summary |
---|---|---|
column | DecoratedPredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | Comparison value. |
useParenthesis | Boolean | Whether the predicate must be enclosed in parenthesis. |
Initializes a new instance of DecoratedColumnPredicate.
public Void DecoratedPredicate(relation, column, op, value, useParenthesis)
Name | Type | Summary |
---|---|---|
relation | RelationalOperator | Relation with the preceding predicate. |
column | DecoratedPredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | Comparison value. |
useParenthesis | Boolean | Whether the predicate must be enclosed in parenthesis. |
Column to which the predicate acts on.
public DecoratedPredicateColumn Column { get; set; }
Comparison operator.
public ComparisonOperator Operator { get; set; }
Comparison value.
public Object Value { get; set; }
In this document