| IElementCreatorCore.CreateDynamicRelation Method (IEntityFieldCore, JoinHint, String, 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.3.0.0 (5.3.0)
SyntaxIDynamicRelation CreateDynamicRelation(
	IEntityFieldCore leftOperand,
	JoinHint joinType,
	string rightOperandEntityName,
	string aliasLeftOperand,
	string aliasRightOperand,
	IPredicate onClause
)
Function CreateDynamicRelation ( 
	leftOperand As IEntityFieldCore,
	joinType As JoinHint,
	rightOperandEntityName As String,
	aliasLeftOperand As String,
	aliasRightOperand As String,
	onClause As IPredicate
) As IDynamicRelation
Parameters
- leftOperand
 - Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldCore
The left operand. - joinType
 - Type: SD.LLBLGen.Pro.ORMSupportClasses.JoinHint
Type of the join. If None is specified, Inner is assumed. - rightOperandEntityName
 - Type: System.String
Name of the entity, which is used as the right operand. - aliasLeftOperand
 - Type: System.String
The alias of the left operand. If you don't want to / need to alias the right operand (only alias if you have to), specify
            string.Empty. - aliasRightOperand
 - Type: System.String
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.ORMSupportClasses.IPredicate
The on clause for the join. 
Return Value
Type: 
IDynamicRelation
            ready to use dynamic relation
            
See Also