ScopeHandlerBaseHandle Method (Expression) |
Handles the specified linq expression. This is done by 2-stage dispatch: it will call (if it's our own expression class) its Handle method which
through polymorphism will call this handler object's Handle routine back with the right type, so it will call the right routine.
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses.ScopeHandlers
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax public virtual void Handle(
Expression toHandle
)
Public Overridable Sub Handle (
toHandle As Expression
)
Parameters
- toHandle
- Type: System.Linq.ExpressionsExpression
The linq expression to handle.
See Also