QueryExpressionBuilderHandleBinaryExpressionBooleanOperator Method  | 
  
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntaxprotected override Expression HandleBinaryExpressionBooleanOperator(
	BinaryExpression expressionToHandle
)
Protected Overrides Function HandleBinaryExpressionBooleanOperator ( 
	expressionToHandle As BinaryExpression
) As Expression
Parameters
- expressionToHandle
 - Type: System.Linq.ExpressionsBinaryExpression
 
Return Value
Type: 
Expression
            An expression representing the handled boolean operator. If the top of the stack is true, it treats the operator as an expression operator
            if the top of the stack is false, the operator is seen as a predicate operator and left alone. We need to make this distinction as LLBLGen Pro
            uses expressions and predicates differently.
            
See Also