QueryExpressionBuilderHandleJoinExpression Method  | 
 
            Handles the join expression.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.7.0.0 (5.7.0)
Syntaxprotected override Expression HandleJoinExpression(
	JoinExpression expressionToHandle
)
Protected Overrides Function HandleJoinExpression ( 
	expressionToHandle As JoinExpression
) As Expression
Parameters
- expressionToHandle
 - Type: SD.LLBLGen.Pro.LinqSupportClasses.ExpressionClassesJoinExpression
The expression to handle. 
Return Value
Type: 
Expression
            Expression which represents the interpreted join expression in LLBLGen Pro form, which is a JoinResultExpression, containing
            the relations of sources as the Source in a RelationCollectionExpression + the projection of the expression passed in.
            
See Also