Click or drag to resize
QueryExpressionBuilderHandleBinaryExpressionBooleanOperator Method

Namespace:  SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected override Expression HandleBinaryExpressionBooleanOperator(
	BinaryExpression expressionToHandle
)

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