Click or drag to resize

QueryOperator Enumeration

Represents a search query operator.

Namespace:  Dynamicweb.Analytics.Queries
Assembly:  Dynamicweb.Analytics (in Dynamicweb.Analytics.dll) Version: 2.1.4
Syntax
public enum QueryOperator
Members
  Member nameValueDescription
Auto0 Automatically choose the operator.
Equals1 Equals.
GreaterThan2 Greater than.
LessThan3 Less than.
GreaterThanOrEqualTo4 Greater than or equal to.
LessThanOrEqualTo5 Less than or equal to.
NotEqualTo6 Not equal to.
Contains7 Contains.
DoesNotContain8 Does not contain.
StartsWith9 Starts with.
DoesNotStartWith10 Does not start with.
EndsWith11 Ends with.
DoesNotEndWith12 Does not end with.
Is13 Is.
IsNot14 Is not.
See Also