Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public enum StandardOperatorType
Members
  Member nameValueDescription
UnaryPlus0op_UnaryPlus call
UnaryNegation1op_UnaryNegation call
LogicalNot2op_LogicalNot call
Increment3op_Increment call
Decrement4op_Decrement call
Addition5op_Addition call
Substraction6op_Substraction call
Multiply7op_Multiple call
Division8op_Division call
Modulus9op_Modulus call
BitwiseAnd10op_BitwiseAnd call
BitwiseOr11op_BitwiseOr call
ExclusiveOr12op_ExclusiveOr call
LeftShift13op_LeftShift call
RightShift14op_RightShift call
Equality15op_Equality call
Inequality16op_Inequality call
LessThan17op_LessThan call
LessThanOrEqual18op_LessThanOrEqual call
GreaterThan19op_GreaterThan call
GreaterThanOrEqual20op_GreaterThanOrEqual call
Implicit21op_Implicit call
Explicit22op_Explicit call
See Also