PreProcessorHandleMethodCallExceptByIntersectBy Method |
Handles the method call expression for a call to Queryable.ExceptBy or to Queryable.IntersectBy. We rewrite q1.ExceptBy/IntersectBy(q2, keySelector)
to q1.Select(keySelector)
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax protected virtual Expression HandleMethodCallExceptByIntersectBy(
MethodCallExpression expressionToHandle,
bool isExcept
)
Protected Overridable Function HandleMethodCallExceptByIntersectBy (
expressionToHandle As MethodCallExpression,
isExcept As Boolean
) As Expression
Parameters
- expressionToHandle
- Type: System.Linq.ExpressionsMethodCallExpression
- isExcept
- Type: SystemBoolean
Return Value
Type:
ExpressionExceptions See Also