Enum QueryBuilderOperatorType
Specifies the filter operators available in the Query Builder.
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public enum QueryBuilderOperatorType
Remarks
Each operator defines a specific comparison or condition to be applied when filtering data.
Fields
| Name | Description |
|---|---|
| Auto | Represents an automatic operator that defaults to 'starts with' for string types and 'equal' for numeric, boolean, and date types. |
| Between | Represents the 'between' operator. |
| Contains | Represents the 'contains' operator. |
| EndsWith | Represents the 'ends with' operator. |
| Equal | Represents the equality operator. |
| GreaterThan | Represents the greater than operator. |
| GreaterThanOrEqual | Represents the greater than or equal to operator. |
| In | Represents the 'in' operator. |
| IsEmpty | Represents the 'is empty' operator. |
| IsNotEmpty | Represents the 'is not empty' operator. |
| IsNotNull | Represents the 'is not null' operator. |
| IsNull | Represents the 'is null' operator. |
| LessThan | Represents the less than operator. |
| LessThanOrEqual | Represents the less than or equal to operator. |
| None | Represents the scenario where no operator has been selected. |
| NotBetween | Represents the 'not between' operator. |
| NotContains | Represents the 'not contains' operator. |
| NotEndsWith | Represents the 'not ends with' operator. |
| NotEqual | Represents the inequality operator. |
| NotIn | Represents the 'not in' operator. |
| NotStartsWith | Represents the 'not starts with' operator. |
| StartsWith | Represents the 'starts with' operator. |