Operators Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents available logical operators.
public enum class Operators
public enum Operators
type Operators =
Public Enum Operators
- Inheritance
-
Operators
Fields
Name | Value | Description |
---|---|---|
Equal | 0 | Equal operator. |
Like | 1 | Pattern searching operator. |
NotEqual | 2 | Not-equal operator. |
GreaterThan | 3 | Greater-than operator. |
GreaterThanOrEqual | 4 | Greater-than-or-euqal operator. |
LessThan | 5 | Less-than operator. |
LessThanOrEqual | 6 | Less-than-or-equal operator. |
TopN | 7 | The top N values. |
BottomN | 8 | The bottom N values. |
TopPercent | 9 | The top N percentage. |
BottomPercent | 10 | The bottom N percentage. |
In | 11 | Multiple match operator. |
Between | 12 | Between two values. |