Enum OperatorType
- Namespace
- Dynamicweb.Tracking.Reporting
- Assembly
- Dynamicweb.Tracking.dll
Type of expression operator.
public enum OperatorType
- Extension Methods
Fields
Equal = 0- Equals operator (=)
GreaterThan = 4- Greater than operator (>).
GreaterThanOrEqual = 5- Greater than or equal operator (>=).
In = 2- In operator (IN).
IsNotNull = 9- Is not null operator (IS NOT NULL).
IsNull = 8- Is null operator (IS NULL).
LessThan = 6- Less than operator (<).
LessThanOrEqual = 7- Less than or equal operator (<=).
NotEqual = 1- Not equals operator (<>).
NotIn = 3- Not in operator (NOT IN).