FilterOperator Enumeration
Specifies the supported filter operations.
Assembly: SqlWorkbench.Interfaces (in SqlWorkbench.Interfaces.dll)
| Member name | Description | |
|---|---|---|
| Between | Includes the object in the result if the property value is between two values. | |
| Contains | Includes the object in the result if the property value contains a specified value. | |
| Equal | Includes the object in the result if the property value is equal to the filter value. | |
| GreaterThan | Includes the object in the result if the property value is greater than the filter value. | |
| GreaterThanEqual | Includes the object in the result if the property value is greater than or equal to the filter value. | |
| LessThan | Includes the object in the result if the property value is less than the filter value. | |
| LessThanEqual | Includes the object in the result if the property value is less than or equal to the filter value. | |
| NotBetween | Includes the object in the result if the property value is not between two values. | |
| NotContains | Includes the object in the result if the property value does not contain a specified value. | |
| NotEqual | Includes the object in the result if the property value is not equal to the filter value. | |
| StartsWith | Includes the object in the result if the property value starts with a specified value. |