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