ElementCreatorBaseCreateDynamicRelation Method (DerivedTableDefinition, JoinHint, String, String, 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.5.0.0 (5.5.18.1019)
Syntaxpublic virtual IDynamicRelation CreateDynamicRelation(
	DerivedTableDefinition leftOperand,
	JoinHint joinType,
	string rightOperandEntityName,
	string aliasRightOperand,
	IPredicate onClause
)
Public Overridable Function CreateDynamicRelation ( 
	leftOperand As DerivedTableDefinition,
	joinType As JoinHint,
	rightOperandEntityName As String,
	aliasRightOperand As String,
	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. - rightOperandEntityName
 - Type: SystemString
Name of the entity, which is used as the right operand. - aliasRightOperand
 - Type: SystemString
The alias of the right operand. If you don't want to / need to alias the right operand (only alias if you have to), specify
            string.Empty. - onClause
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The on clause for the join. 
Return Value
Type: 
IDynamicRelationready to use dynamic relation
Implements
IElementCreatorCoreCreateDynamicRelation(DerivedTableDefinition, JoinHint, String, String, IPredicate)
See Also