PreProcessorHandleMethodCallExceptIntersect Method  | 
 
            Handles the method call expression for a call to Queryable.Except or to Queryable.Intersect
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.8.0.0 (5.8.21.0111)
Syntaxprotected virtual Expression HandleMethodCallExceptIntersect(
	MethodCallExpression expressionToHandle,
	bool isExcept
)
Protected Overridable Function HandleMethodCallExceptIntersect ( 
	expressionToHandle As MethodCallExpression,
	isExcept As Boolean
) As Expression
Parameters
- expressionToHandle
 - Type: System.Linq.ExpressionsMethodCallExpression
The expression to handle. - isExcept
 - Type: SystemBoolean
if true, the call is to Except, otherwise to Intersect 
Return Value
Type: 
ExpressionExceptExpression.
See Also