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
type BooleanComparisonType =
Public Enum BooleanComparisonType
- Inheritance
-
BooleanComparisonType
- Attributes
-
SerializableAttribute SerializableAttribute
Fields
| Equals | 0 | The '=' character, equal to. |
| GreaterThan | 1 | The '>' character, greater than. |
| GreaterThanOrEqualTo | 3 | The '>' '=' characters, greater than or equal to. |
| LeftOuterJoin | 9 | The '*' '=' characters, left outer join. |
| LessThan | 2 | The '<' character, less than. |
| LessThanOrEqualTo | 4 | The '<' '=' characters, less than or equal to. |
| NotEqualToBrackets | 5 | The '<' '>' characters, not equal to. |
| NotEqualToExclamation | 6 | The '!' '=' characters, not equal to. |
| NotGreaterThan | 8 | The '!' '>' characters, not greater than. |
| NotLessThan | 7 | The '!' '<' characters, not less than. |
| RightOuterJoin | 10 | The '=' '*' characters, right outer join. |