Click or drag to resize

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.6.0.0 (4.6.0.0)
Syntax
public enum ComparisonOperators
Members
  Member nameValueDescription
Equals0 The filter criteria must be equal to its value
DoesNotEqual1 The filter criteria must be different from its value
GreaterThan2 The filter criteria must be greater than its value
GreaterThanOrEquals3 The filter criteria must be greater than or equal to its value
LowerThan4 The filter criteria must be lower than its value
LowerThanOrEquals5 The filter criteria must be lower than or equal its value
Contains6 The filter criteria must contain its value
BeginsWith7 The filter criteria must begin with its value
EndsWith8 The filter criteria must end with its value
IsNull9 The filter criteria must have no value
IsNotNull10 The filter criteria must have a value
In11 The filter criteria must be contained into a set of value
NotIn12 The filter criteria must not be contained into a set of value
Between13 The filter criteria must refer to a date/time field to enclose into a given period of time
RelatesTo14 The filter criteria must be relates to another fields of the query's embedded tables
Exists15 The filter criteria must contain an sql statement with an implicit join to the outer sql statement
See Also