Supported Filters
| Operator | Linq | Applicable |
|---|---|---|
| = | == | Primitive* |
| != | != | Primitive* |
| > | > | Primitive* |
| >= | >= | Primitive* |
| < | < | Primitive* |
| <= | <= | Primitive* |
| contains | string.Contains() | Primitive* |
| !contains | !string.Contains() | Primitive* |
| startsWith | string.StartsWith() | Primitive* |
| !startsWith | !string.StartsWith() | Primitive* |
| and | && | - |
| or | || | - |
| in | values.Contains(fieldValue) | Primitive* |
| !in | !values.Contains(fieldValue) | Primitive* |
| any | !Collection.Any(childExpression) | Collection |
| all | !Collection.All(childExpression) | Collection |
* Primitive - primitive types + string + DateTime + DateTimeOffset