ContentQueryFilterOperator Enumeration |
Namespace: Packflow.Modeling
public enum ContentQueryFilterOperator
| Member name | Value | Description | |
|---|---|---|---|
| Equal | 0 | Checks if the column value is equal to a given value. | |
| NotEqual | 1 | Checks if the column value is different to a given value. | |
| Greater | 2 | Checks if the column value is greater than a given value. | |
| Less | 3 | Checks if the column value is less than a given value. | |
| GreaterOrEqual | 4 | Checks if the column value is greater or equal than a given value. | |
| LessOrEqual | 5 | Checks if the column value is less or equal than a given value. | |
| BeginsWith | 6 | Checks if the column value starts with a given value. | |
| EndsWith | 7 | Checks if the column value ends with a given value. | |
| Contains | 8 | Checks if the column value contains a given value. | |
| NotContains | 9 | Checks if the column value does not contain a given value. | |
| IsNull | 10 | Checks if the column value is null. | |
| IsNotNull | 11 | Checks if the column value is not null. |