Enum FilterType
Specifies the FilterType to be used in LINQ methods.
Namespace: Syncfusion.Blazor.Data
Assembly: Syncfusion.Blazor.Data.dll
Syntax
public enum FilterType
Fields
| Name | Description |
|---|---|
| Between | Checks for Between two date on the operands. |
| Contains | Checks for Contains on the string operands. |
| DoesNotContain | Checks for Does Not Contains on the string operands. |
| DoesNotEndWith | Checks for Does Not EndsWith on the string operands. |
| DoesNotStartWith | Checks for Does Not StartsWith on the string operands. |
| EndsWith | Checks for EndsWith on the string operands. |
| Equals | Checks Equals on the operands. |
| GreaterThan | Checks for Greater Than on the operands. |
| GreaterThanOrEqual | Checks for Greater Than or Equal on the operands. |
| IsEmpty | Performs IsEmpty operation. |
| IsNotEmpty | Performs IsNotEmpty operation. |
| IsNotNull | Performs IsNotNull operation. |
| IsNull | Performs IsNull operation. |
| LessThan | Performs LessThan operation. |
| LessThanOrEqual | Performs LessThan Or Equal operation. |
| Like | Checks for Like on the string operands. |
| NotEquals | Checks for Not Equals on the operands. |
| StartsWith | Checks for StartsWith on the string operands. |
| Undefined | Returns invalid type |
| WildCard | Performs WildCard operation. |