PreProcessorHandleMethodCallExceptIntersect Method |
Handles the method call expression for a call to Queryable.Except or to Queryable.Intersect
Namespace: SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlersAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax protected 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