Represents a simple predicate for a filter condition
Default constructor
public Void SimplePredicate()
Initializes a new instance of SimplePredicate.
public Void SimplePredicate(column, op, value)
Name | Type | Summary |
---|---|---|
column | PredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | The value to compare with. |
Initializes a new instance of SimplePredicate.
public Void SimplePredicate(column, op, value, caseSensitive)
Name | Type | Summary |
---|---|---|
column | PredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | The value to compare with. |
caseSensitive | Boolean | Indicates whether the search must be case sensitive. |
Initializes a new instance of SimplePredicate.
public Void SimplePredicate(column, op, value, caseSensitive, useParenthesis)
Name | Type | Summary |
---|---|---|
column | PredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | The value to compare with. |
caseSensitive | Boolean | Indicates whether the search must be case sensitive. |
useParenthesis | Boolean | Indicates whether the predicate must be enclosed in parenthesis. |
Initializes a new instance of SimplePredicate.
public Void SimplePredicate(relation, column, op, value)
Name | Type | Summary |
---|---|---|
relation | RelationalOperator | Relation between predicates. |
column | PredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | The value to compare with. |
Initializes a new instance of SimplePredicate.
public Void SimplePredicate(relation, column, op, value, caseSensitive)
Name | Type | Summary |
---|---|---|
relation | RelationalOperator | Relation between predicates. |
column | PredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | The value to compare with. |
caseSensitive | Boolean | Indicates whether the search must be case sensitive. |
Initializes a new instance of SimplePredicate.
public Void SimplePredicate(relation, column, op, value, caseSensitive, useParenthesis)
Name | Type | Summary |
---|---|---|
relation | RelationalOperator | Relation between predicates. |
column | PredicateColumn | Column to which the predicate acts on. |
op | ComparisonOperator | Comparison operator. |
value | Object | The value to compare with. |
caseSensitive | Boolean | Indicates whether the search must be case sensitive. |
useParenthesis | Boolean | Indicates whether the predicate must be enclosed in parenthesis. |
Indicates whether the search must be case sensitive.
public Boolean CaseSensitive { get; set; }
Column to which the predicate acts on.
public PredicateColumn Column { get; set; }
Comparison value.
public Object Value { get; set; }
In this document