QueryTargetFullJoin Method (IEntityRelation, String, String) |
Creates a new join of type FULL JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Namespace:
SD.LLBLGen.Pro.QuerySpec
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax public static HybridJoin FullJoin(
IEntityRelation rightOperand,
string aliasStartEntity,
string aliasEndEntity
)
Public Shared Function FullJoin (
rightOperand As IEntityRelation,
aliasStartEntity As String,
aliasEndEntity As String
) As HybridJoin
Parameters
- rightOperand
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityRelation
The relationship to join over - aliasStartEntity
- Type: SystemString
The alias of the start entity in rightOperand. - aliasEndEntity
- Type: SystemString
The alias of the end entity in rightOperand.
Return Value
Type:
HybridJointhe created join object
See Also