| OperatorType Enumeration |
Expression operator enumeration
Namespace:
Dynamicweb.Indexing.Querying.Expressions
Assembly:
Dynamicweb.Indexing (in Dynamicweb.Indexing.dll) Version: 5.0.2
Syntax [JsonConverterAttribute(typeof(StringEnumConverter))]
public enum OperatorType
<JsonConverterAttribute(GetType(StringEnumConverter))>
Public Enumeration OperatorType
Members
| Member name | Value | Description |
---|
| GreaterThan | 0 |
An operator representing a "greater than" numeric comparison.
|
| GreaterThanOrEqual | 1 |
An operator representing a "greater than or equal" numeric comparison.
|
| LessThan | 2 |
An operator representing a "less than" numeric comparison.
|
| LessThanOrEqual | 3 |
An operator representing a "less than or equal" numeric comparison.
|
| Equal | 4 |
An operator representing an equality comparison.
|
| MatchAny | 5 |
An operator representing a "match any" operator.
|
| MatchAll | 6 |
An operator representing a "match all" operator.
|
| Contains | 7 |
An operator representing a "containing" comparison.
|
| ContainsExtended | 8 |
An operator representing a "containing" comparison with a leading *.
|
| In | 9 |
An operator representing an inclusion comparison.
|
| Between | 10 |
An operator representing a "between" comparison.
|
| And | 11 |
An operator representing a logical AND operation.
|
| Or | 12 |
An operator representing a logical OR operation.
|
| IsEmpty | 13 |
An operator representing a check for if the selected field is empty
|
See Also