BooleanComparisonType 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.
The types of comparison expressions
[System.Serializable]
public enum BooleanComparisonType
[<System.Serializable>]
type BooleanComparisonType =
Public Enum BooleanComparisonType
- Inheritance
-
BooleanComparisonType
- Attributes
Fields
Name | Value | Description |
---|---|---|
Equals | 0 | The '=' character, equal to. |
GreaterThan | 1 | The '>' character, greater than. |
LessThan | 2 | The '<' character, less than. |
GreaterThanOrEqualTo | 3 | The '>' '=' characters, greater than or equal to. |
LessThanOrEqualTo | 4 | The '<' '=' characters, less than or equal to. |
NotEqualToBrackets | 5 | The '<' '>' characters, not equal to. |
NotEqualToExclamation | 6 | The '!' '=' characters, not equal to. |
NotLessThan | 7 | The '!' '<' characters, not less than. |
NotGreaterThan | 8 | The '!' '>' characters, not greater than. |
LeftOuterJoin | 9 | The '*' '=' characters, left outer join. |
RightOuterJoin | 10 | The '=' '*' characters, right outer join. |
IsDistinctFrom | 11 | The distinct predicate, IS DISTINCT FROM. |
IsNotDistinctFrom | 12 | The distinct predicate, IS NOT DISTINCT FROM. |