Enum FilterType
Specifies the FilterType to be used in LINQ methods.
Namespace: Syncfusion.DataSource
Assembly: Syncfusion.DataSource.WinForms.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. |
| 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. |
| LessThan | Performs LessThan operation. |
| LessThanOrEqual | Performs LessThan Or Equal operation. |
| NotEquals | Checks for Not Equals on the operands. |
| StartsWith | Checks for StartsWith on the string operands. |
| Undefined | Returns invalid type |