Enum ConditionOp
Represents a condition operator used in building filter expressions.
public enum ConditionOp
- Extension Methods
Fields
Between = 11The value is between two specified values.
Contains = 8The value contains the specified substring.
EndsWith = 10The value ends with the specified substring.
Equal = 1Equal to (=).
Greater = 3Greater than (>).
GreaterOrEqual = 4Greater than or equal to (>=).
In = 12The value is contained in a specified list of values.
Less = 5Less than (<).
LessOrEqual = 6Less than or equal to (<=).
Like = 7Matches a pattern using the SQL LIKE operator.
None = 0No operator specified.
NotEqual = 2Not equal to (<>).
Null = 13The value is null.
StartsWith = 9The value starts with the specified substring.