Supported LINQ query operators
The following operators are supported in LINQ queries.
|
Operator |
Description |
|---|---|
|
Equals |
Field values must match the specified value exactly. |
|
NotEquals |
Field 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. |
|
Contains |
Field values must contain the specified value. |
|
StartsWith |
Field values must start with the specified value. |
|
EndsWith |
Field values must end with the specified value. |