StandardOperatorType Enumeration |
Enum to specify the type of the standard operator which call was seen in the expression. This enum is used by the general handler for these method calls
to convert them into unary or binary expressions.
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public enum StandardOperatorType
Public Enumeration StandardOperatorType
Members
| Member name | Value | Description |
---|
| UnaryPlus | 0 | op_UnaryPlus call |
| UnaryNegation | 1 | op_UnaryNegation call |
| LogicalNot | 2 | op_LogicalNot call |
| Increment | 3 | op_Increment call |
| Decrement | 4 | op_Decrement call |
| Addition | 5 | op_Addition call |
| Substraction | 6 | op_Substraction call |
| Multiply | 7 | op_Multiple call |
| Division | 8 | op_Division call |
| Modulus | 9 | op_Modulus call |
| BitwiseAnd | 10 | op_BitwiseAnd call |
| BitwiseOr | 11 | op_BitwiseOr call |
| ExclusiveOr | 12 | op_ExclusiveOr call |
| LeftShift | 13 | op_LeftShift call |
| RightShift | 14 | op_RightShift call |
| Equality | 15 | op_Equality call |
| Inequality | 16 | op_Inequality call |
| LessThan | 17 | op_LessThan call |
| LessThanOrEqual | 18 | op_LessThanOrEqual call |
| GreaterThan | 19 | op_GreaterThan call |
| GreaterThanOrEqual | 20 | op_GreaterThanOrEqual call |
| Implicit | 21 | op_Implicit call |
| Explicit | 22 | op_Explicit call |
See Also