Click or drag to resize
ExOp Enumeration
Enum definition for the ExpressionOperators (ExOp). Name is shortened to limit typing.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public enum ExOp
Members
  Member nameValueDescription
None0 None specified.
Add1 Add arithmetic operator
Sub2 Sub(tract) arithmetic operator
Mul3 Mul(tiply) arithmetic operator
Div4 Div(ision) arithmetic operator
Mod5 Mod(ulo) arithmetic operator
Equal6 Equal (==) logical operator
GreaterEqual7 GreaterEqual (>=) logical operator
GreaterThan8 Greater (>) logical operator
LessEqual9 LessEqual (<=) logical operator
LesserThan10 Lesser (<) logical operator
NotEqual11 Not Equal (!=) logical operator
And12 And logical operator
Or13 Or logical operator
BitwiseAnd14 Bitwise and (&) operator
BitwiseOr15 Bitwise or (|) operator
BitwiseXor16 Bitwise exclusive or (Xor) (^) operator
See Also