BooleanComparisonType Enum

Definition

The types of comparison expressions

[System.Serializable]
public enum BooleanComparisonType
[<System.Serializable>]
type BooleanComparisonType = 
Public Enum BooleanComparisonType
Inheritance
BooleanComparisonType
Attributes

Fields

Equals 0

The '=' character, equal to.

GreaterThan 1

The '>' character, greater than.

GreaterThanOrEqualTo 3

The '>' '=' characters, greater than or equal to.

IsDistinctFrom 11

The distinct predicate, IS DISTINCT FROM.

IsNotDistinctFrom 12

The distinct predicate, IS NOT DISTINCT FROM.

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.

Applies to