Click or drag to resize
Joins Class
Helper class which can create inner/left/right/cross joins based on EntityRelation objects.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.QuerySpecJoins

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static class Joins
Methods
  NameDescription
Public methodStatic memberCross(IEntityRelation)
Defines the join specified by the relationship as a cross join
Public methodStatic memberCross(IEntityRelation, String, String)
Defines the join specified by the relationship as a cross join
Public methodStatic memberFull(IEntityRelation)
Defines the join specified by the relationship as a full join
Public methodStatic memberFull(IEntityRelation, String, String)
Defines the join specified by the relationship as a full join
Public methodStatic memberInner(IEntityRelation)
Defines the join specified by the relationship as an Inner join
Public methodStatic memberInner(IEntityRelation, String, String)
Defines the join specified by the relationship as an Inner join
Public methodStatic memberLeft(IEntityRelation)
Defines the join specified by the relationship as a left join
Public methodStatic memberLeft(IEntityRelation, String, String)
Defines the join specified by the relationship as a left join
Public methodStatic memberRight(IEntityRelation)
Defines the join specified by the relationship as a right join
Public methodStatic memberRight(IEntityRelation, String, String)
Defines the join specified by the relationship as a right join
Top
See Also