Enum FilterOperator
- Namespace
- Radzen
- Assembly
- Radzen.Blazor.dll
Specifies the comparison operator of a filter.
public enum FilterOperator
- Extension Methods
Fields
Contains = 6
Satisfied if the current value contains the specified value.
Custom = 16
Custom operator if not need to generate the filter.
DoesNotContain = 9
Satisfied if the current value does not contain the specified value.
EndsWith = 8
Satisfied if the current value ends with the specified value.
Equals = 0
Satisfied if the current value equals the specified value.
GreaterThan = 4
Satisfied if the current value is greater than the specified value.
GreaterThanOrEquals = 5
Satisfied if the current value is greater than or equal to the specified value.
In = 10
Satisfied if the current value is in the specified value.
IsEmpty = 13
Satisfied if the current value is Empty.
IsNotEmpty = 15
Satisfied if the current value is not Empty.
IsNotNull = 14
Satisfied if the current value is not null.
IsNull = 12
Satisfied if the current value is null.
LessThan = 2
Satisfied if the current value is less than the specified value.
LessThanOrEquals = 3
Satisfied if the current value is less than or equal to the specified value.
NotEquals = 1
Satisfied if the current value does not equal the specified value.
NotIn = 11
Satisfied if the current value is not in the specified value.
StartsWith = 7
Satisfied if the current value starts with the specified value.