Enum OperatorType
- Namespace
- Dynamicweb.Indexing.Querying.Expressions
- Assembly
- Dynamicweb.Core.dll
Expression operator enumeration
public enum OperatorType
Fields
And = 12
An operator representing a logical AND operation.
Between = 11
An operator representing a "between" comparison.
Contains = 8
An operator representing a "containing" comparison.
ContainsExtended = 9
An operator representing a "containing" comparison with a leading *.
Equal = 5
An operator representing an equality comparison.
GreaterThan = 1
An operator representing a "greater than" numeric comparison.
GreaterThanOrEqual = 2
An operator representing a "greater than or equal" numeric comparison.
In = 10
An operator representing an inclusion comparison.
IsEmpty = 14
An operator representing a check for if the selected field is empty
LessThan = 3
An operator representing a "less than" numeric comparison.
LessThanOrEqual = 4
An operator representing a "less than or equal" numeric comparison.
MatchAll = 7
An operator representing a "match all" operator.
MatchAny = 6
An operator representing a "match any" operator.
Or = 13
An operator representing a logical OR operation.