Click or drag to resize
QueryTarget Class
Placeholder class to specify a join in From() calls on an EntityQuery.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.QuerySpecQueryTarget

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 QueryTarget

The QueryTarget type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAs
Specifies the target alias for the query target.
Public methodStatic memberCrossJoin(IEntityRelation)
Creates a new join of type CROSS JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberCrossJoin(IJoinOperand)
Creates a new join of type CROSS JOIN between the EntityQuery which From() class the QueryTarget is used on and the specified right operand.
Public methodStatic memberCrossJoin(IEntityRelation, String, String)
Creates a new join of type CROSS JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberFullJoin(IEntityRelation)
Creates a new join of type FULL JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberFullJoin(IJoinOperand)
Creates a new join of type FULL JOIN between the EntityQuery which From() class the QueryTarget is used on and the specified right operand.
Public methodStatic memberFullJoin(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
Public methodStatic memberInnerJoin(IEntityRelation)
Creates a new join of type INNER JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberInnerJoin(IJoinOperand)
Creates a new join of type INNER JOIN between the EntityQuery which From() class the QueryTarget is used on and the specified right operand.
Public methodStatic memberInnerJoin(IEntityRelation, String, String)
Creates a new join of type INNER JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberLeftJoin(IEntityRelation)
Creates a new join of type LEFT JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberLeftJoin(IJoinOperand)
Creates a new join of type LEFT JOIN between the EntityQuery which From() class the QueryTarget is used on and the specified right operand.
Public methodStatic memberLeftJoin(IEntityRelation, String, String)
Creates a new join of type LEFT JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberRightJoin(IEntityRelation)
Creates a new join of type RIGHT JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Public methodStatic memberRightJoin(IJoinOperand)
Creates a new join of type RIGHT JOIN between the EntityQuery which From() class the QueryTarget is used on and the specified right operand.
Public methodStatic memberRightJoin(IEntityRelation, String, String)
Creates a new join of type RIGHT JOIN between the EntityQuery which From() class the QueryTarget is used by using the entity relation specified
Top
See Also