Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public EntityQuery<TEntity> CorrelatedOver(
	IEntityRelation relationship
)

Parameters

relationship
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityRelation
The relationship this query is correlated over with a parent query.

Return Value

Type: EntityQueryTEntity
Remarks
Uses no aliases.
See Also