  | QueryOperator Enumeration | 
 
            Represents a search query operator.
            
 
    Namespace: 
   Dynamicweb.Analytics.Queries
    Assembly:
   Dynamicweb.Analytics (in Dynamicweb.Analytics.dll) Version: 2.1.4
Syntaxpublic enum QueryOperator
Public Enumeration QueryOperator
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Auto | 0 | 
            Automatically choose the operator.
             | 
 | Equals | 1 | 
            Equals.
             | 
 | GreaterThan | 2 | 
            Greater than.
             | 
 | LessThan | 3 | 
            Less than.
             | 
 | GreaterThanOrEqualTo | 4 | 
            Greater than or equal to.
             | 
 | LessThanOrEqualTo | 5 | 
            Less than or equal to.
             | 
 | NotEqualTo | 6 | 
            Not equal to.
             | 
 | Contains | 7 | 
            Contains.
             | 
 | DoesNotContain | 8 | 
            Does not contain.
             | 
 | StartsWith | 9 | 
            Starts with.
             | 
 | DoesNotStartWith | 10 | 
            Does not start with.
             | 
 | EndsWith | 11 | 
            Ends with.
             | 
 | DoesNotEndWith | 12 | 
            Does not end with.
             | 
 | Is | 13 | 
            Is.
             | 
 | IsNot | 14 | 
            Is not.
             | 
See Also