ConditionOperator Enumeration |
Specifies the possible values for the operator in a condition expression.
Namespace: CorrigoService.EnumsAssembly: ClientXMLDoc (in ClientXMLDoc.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax[SerializableAttribute]
public enum ConditionOperator
<SerializableAttribute>
Public Enumeration ConditionOperator
No code example is currently available or this language may not be supported.
MembersMember name | Value | Description |
---|
Between | 0 |
Specifies that the value is between two values.
|
Equal | 1 |
Specifies that two expressions are compared for equality.
|
GreaterOrEqual | 2 |
Specifies that two expressions are compared for greater than or equal to conditions.
|
GreaterThan | 3 |
Specifies that two expressions are compared for greater than condition.
|
In | 4 |
Specifies that a given value is matched to a value in a subquery or a list.
|
LessOrEqual | 5 |
Specifies that two expressions are compared for less than or equal to conditions.
|
LessThan | 6 |
Specifies that two expressions are compared for less than condition.
|
Like | 7 |
Specifies that the character string is matched to a specified pattern.
|
NotBetween | 8 |
Specifies that the value is not between two values.
|
NotEqual | 9 |
Specifies that two expressions are compared for inequality.
|
NotIn | 10 |
Specifies that a given value is not matched to a value in a subquery or a list.
|
NotLike | 11 |
Specifies that the character string is not matched to a specified pattern.
|
NotNull | 12 |
Specifies that the value is not null.
|
Null | 13 |
Specifies that the value is null.
|
See Also