| ElementCreatorBaseCreateDynamicRelation Method (DerivedTableDefinition, JoinHint, DerivedTableDefinition, IPredicate) | 
 
            Creates a new dynamic relation instance
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic abstract IDynamicRelation CreateDynamicRelation(
	DerivedTableDefinition leftOperand,
	JoinHint joinType,
	DerivedTableDefinition rightOperand,
	IPredicate onClause
)
Public MustOverride Function CreateDynamicRelation ( 
	leftOperand As DerivedTableDefinition,
	joinType As JoinHint,
	rightOperand As DerivedTableDefinition,
	onClause As IPredicate
) As IDynamicRelation
Parameters
- leftOperand
 - Type: SD.LLBLGen.Pro.ORMSupportClassesDerivedTableDefinition
The left operand. - joinType
 - Type: SD.LLBLGen.Pro.ORMSupportClassesJoinHint
Type of the join. If None is specified, Inner is assumed. - rightOperand
 - Type: SD.LLBLGen.Pro.ORMSupportClassesDerivedTableDefinition
The right operand. - onClause
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The on clause for the join. 
Return Value
Type: 
IDynamicRelationready to use dynamic relation
Implements
IElementCreatorCoreCreateDynamicRelation(DerivedTableDefinition, JoinHint, DerivedTableDefinition, IPredicate)
See Also