Click or drag to resize
ConditionOperator Enumeration
Specifies the possible values for the operator in a condition expression.

Namespace: CorrigoService.Enums
Assembly: ClientXMLDoc (in ClientXMLDoc.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
public enum ConditionOperator
Members
  Member nameValueDescription
Between0 Specifies that the value is between two values.
Equal1 Specifies that two expressions are compared for equality.
GreaterOrEqual2 Specifies that two expressions are compared for greater than or equal to conditions.
GreaterThan3 Specifies that two expressions are compared for greater than condition.
In4 Specifies that a given value is matched to a value in a subquery or a list.
LessOrEqual5 Specifies that two expressions are compared for less than or equal to conditions.
LessThan6 Specifies that two expressions are compared for less than condition.
Like7 Specifies that the character string is matched to a specified pattern.
NotBetween8 Specifies that the value is not between two values.
NotEqual9 Specifies that two expressions are compared for inequality.
NotIn10 Specifies that a given value is not matched to a value in a subquery or a list.
NotLike11 Specifies that the character string is not matched to a specified pattern.
NotNull12 Specifies that the value is not null.
Null13 Specifies that the value is null.
See Also