1. Query

Supported LINQ query operators

The following operators are supported in LINQ queries.

OperatorDescription
EqualsField values must match the specified value exactly.
NotEqualsField values must not equal the specified value.
Gt (GreaterThan)Field values must be larger than the specified value.
Lt (LessThan)Field values must be smaller than the specified value.
Lte (LessThanOrEquals)Field values must be smaller than or equal to the specified value.
Gte (GreaterThanOrEquals)Field values must be greater or equal to the specified value.
ContainsField values must contain the specified value.
StartsWithField values must start with the specified value.
EndsWithField values must end with the specified value.
If you have suggestions for improving this article, let us know!