Enum FilterType
Specifies the filter type to be used in LINQ methods.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WinForms.dll
Syntax
public enum FilterType
Fields
| Name | Description |
|---|---|
| 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 GreaterThan on the operands. |
| GreaterThanOrEqual | Checks for GreaterThan or Equal on the operands. |
| LessThan | Performs LessThan operation. |
| LessThanOrEqual | Performs LessThan or Equal operation. |
| NotContains | Checks for NotContains on the string operands. |
| NotEndsWith | Checks the string operand which does not end with the given filter criteria. |
| NotEquals | Checks for NotEquals on the operands. |
| NotStartsWith | Checks the string operand which does not start with the given filter criteria. |
| StartsWith | Checks for StartsWith on the string operands. |