Enum Operator
Specifies the operator list used for filtering or searching operations.
Namespace: Syncfusion.Blazor
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum Operator
Fields
| Name | Description |
|---|---|
| Contains | Represents a filter item checking if it contains a specified value. |
| DoesNotContain | Represents a filter item checking if it does not contain a specified value. |
| DoesNotEndWith | Represents a filter item checking if it does not end with a specified value. |
| DoesNotStartWith | Represents a filter item checking if it does not start with a specified value. |
| EndsWith | Represents a filter item checking if it endswith a specified value. |
| Equal | Represents a filter item checking if it equal with a specified value. |
| GreaterThan | Represents a filter item checking if it greaterthan with a specified value. |
| GreaterThanOrEqual | Represents a filter item checking if it greaterthanorequal with a specified value. |
| IsEmpty | Represents a filter item checking if it is empty. |
| IsNotEmpty | Represents a filter item checking if it is not empty. |
| IsNotNull | Represents a filter item checking if it is not null. |
| IsNull | Represents a filter item checking if it is null. |
| LessThan | Represents a filter item checking if it lessthan with a specified value. |
| LessThanOrEqual | Represents a filter item checking if it lessthanorequal with a specified value. |
| Like | Represents a filter item using the |
| None | No operator is selected. |
| NotEqual | Represents a filter item checking if it not equal with a specified value. |
| StartsWith | Represents a filter item checking if it startswith a specified value. |
| WildCard | Represents a filter item using the |