ComparisonOperators Enumeration |
Exposes a set of comparison operators available when defining a FilterCriteria
Namespace:
WorkflowGen.My.Data
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.3.0.0 (4.3.0.0)
Syntax public enum ComparisonOperators
Public Enumeration ComparisonOperators
Members
| Member name | Value | Description |
---|
| Equals | 0 |
The filter criteria must be equal to its value
|
| DoesNotEqual | 1 |
The filter criteria must be different from its value
|
| GreaterThan | 2 |
The filter criteria must be greater than its value
|
| GreaterThanOrEquals | 3 |
The filter criteria must be greater than or equal to its value
|
| LowerThan | 4 |
The filter criteria must be lower than its value
|
| LowerThanOrEquals | 5 |
The filter criteria must be lower than or equal its value
|
| Contains | 6 |
The filter criteria must contain its value
|
| BeginsWith | 7 |
The filter criteria must begin with its value
|
| EndsWith | 8 |
The filter criteria must end with its value
|
| IsNull | 9 |
The filter criteria must have no value
|
| IsNotNull | 10 |
The filter criteria must have a value
|
| In | 11 |
The filter criteria must be contained into a set of value
|
| NotIn | 12 |
The filter criteria must not be contained into a set of value
|
| Between | 13 |
The filter criteria must refer to a date/time field to enclose into a given period of time
|
| RelatesTo | 14 |
The filter criteria must be relates to another fields of the query's embedded tables
|
| Exists | 15 |
The filter criteria must contain an sql statement with an implicit join to the outer sql statement
|
See Also