FilterOperator
Enum
Operator used in FilterDescriptor
Definition
Fields
Left operand must contain the right one.
C#
Contains = 8
Left operand must not contain the right one.
C#
DoesNotContain = 10
Left operand must end with the right one.
C#
EndsWith = 7
Left operand must be contained in the right one.
C#
IsContainedIn = 9
Operand is empty.
C#
IsEmpty = 13
Left operand must be equal to the right one.
C#
IsEqualTo = 2
Left operand must be larger than or equal to the right one.
C#
IsGreaterThan = 5
Left operand must be larger than the right one.
C#
IsGreaterThanOrEqualTo = 4
Left operand must be smaller than the right one.
C#
IsLessThan = 0
Left operand must be smaller than or equal to the right one.
C#
IsLessThanOrEqualTo = 1
Operand is not empty.
C#
IsNotEmpty = 14
Left operand must be different from the right one.
C#
IsNotEqualTo = 3
Operand is not null.
C#
IsNotNull = 12
Operand is not null or empty.
C#
IsNotNullOrEmpty = 16
Operand is null.
C#
IsNull = 11
Operand is null or empty.
C#
IsNullOrEmpty = 15
Left operand must start with the right one.
C#
StartsWith = 6