Click or drag to resize
ElementCreatorBase.CreateDynamicRelation 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.2.0.0 (5.2.17.0403)
Syntax
public abstract IDynamicRelation CreateDynamicRelation(
	DerivedTableDefinition leftOperand,
	JoinHint joinType,
	DerivedTableDefinition rightOperand,
	IPredicate onClause
)

Parameters

leftOperand
Type: SD.LLBLGen.Pro.ORMSupportClasses.DerivedTableDefinition
The left operand.
joinType
Type: SD.LLBLGen.Pro.ORMSupportClasses.JoinHint
Type of the join. If None is specified, Inner is assumed.
rightOperand
Type: SD.LLBLGen.Pro.ORMSupportClasses.DerivedTableDefinition
The right operand.
onClause
Type: SD.LLBLGen.Pro.ORMSupportClasses.IPredicate
The on clause for the join.

Return Value

Type: IDynamicRelation
ready to use dynamic relation

Implements

IElementCreatorCore.CreateDynamicRelation(DerivedTableDefinition, JoinHint, DerivedTableDefinition, IPredicate)
See Also