Enum BinaryOperator
enum holding all possible binary combinations.
Namespace: TimeCockpit.Data.QueryLanguage.Syntax
Assembly: TimeCockpit.Data.dll
Syntax
public enum BinaryOperator
Fields
Name | Description |
---|---|
Addition | Addition operation. |
AndAlso | Boolean and operation. |
Different | Different (<>) |
Division | Division operation. |
Equals | Equals (=) |
Greater | Greater Than. (>) |
GreaterEqual | Greater Equal. (>=) |
In | In operator. |
Less | Less (<) |
LessEqual | Less or equal (<=) |
Like | Like text comparison. |
Multiplication | Multiplication operation. |
NotIn | Not In operator. |
NotLike | Not Like |
OrElse | Boolean Or operation. |
Subtraction | Subtraction operation. |