EntityQueryTEntityCorrelatedOver Method (IEntityRelation) | 
 
            Uses the specified relationship to construct a correlation predicate between this query (where TEntity should be the start entity of the relation
            specified) and a parent entity query. This method helps constructing correlation predicates without knowing the FK - PK relationships.
            
 
    Namespace: 
   SD.LLBLGen.Pro.QuerySpec
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic EntityQuery<TEntity> CorrelatedOver(
	IEntityRelation relationship
)
Public Function CorrelatedOver ( 
	relationship As IEntityRelation
) As EntityQuery(Of TEntity)
Parameters
- relationship
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityRelation
The relationship this query is correlated over with a parent query. 
Return Value
Type: 
EntityQueryTEntity
RemarksUses no aliases.
See Also