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.6.0.0 (5.6.19.0117)
Syntax public 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