IElementCreatorCoreCreateDynamicRelation Method (IEntityFieldCore, JoinHint, DerivedTableDefinition, 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.4.0.0 (5.4.0)
Syntax IDynamicRelation CreateDynamicRelation(
IEntityFieldCore leftOperand,
JoinHint joinType,
DerivedTableDefinition rightOperand,
string aliasLeftOperand,
IPredicate onClause
)
Function CreateDynamicRelation (
leftOperand As IEntityFieldCore,
joinType As JoinHint,
rightOperand As DerivedTableDefinition,
aliasLeftOperand As String,
onClause As IPredicate
) As IDynamicRelation
Parameters
- leftOperand
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
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. - aliasLeftOperand
- Type: SystemString
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. - onClause
- Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The on clause for the join.
Return Value
Type:
IDynamicRelation
ready to use dynamic relation
See Also