Share via


RelationalQueryModelVisitor.IncludeNavigations Method

Definition

Overloads

IncludeNavigations(QueryModel, IReadOnlyCollection<IncludeSpecification>)

High-level method called to perform Include compilation.

IncludeNavigations(IncludeSpecification, Type, Expression, Boolean)

High-level method called to perform Include compilation for a single Include.

IncludeNavigations(QueryModel, IReadOnlyCollection<IncludeSpecification>)

High-level method called to perform Include compilation.

protected override void IncludeNavigations (Remotion.Linq.QueryModel queryModel, System.Collections.Generic.IReadOnlyCollection<Microsoft.EntityFrameworkCore.Query.IncludeSpecification> includeSpecifications);
override this.IncludeNavigations : Remotion.Linq.QueryModel * System.Collections.Generic.IReadOnlyCollection<Microsoft.EntityFrameworkCore.Query.IncludeSpecification> -> unit
Protected Overrides Sub IncludeNavigations (queryModel As QueryModel, includeSpecifications As IReadOnlyCollection(Of IncludeSpecification))

Parameters

queryModel
Remotion.Linq.QueryModel

The query model.

includeSpecifications
IReadOnlyCollection<IncludeSpecification>

Related data to be included.

Applies to

IncludeNavigations(IncludeSpecification, Type, Expression, Boolean)

High-level method called to perform Include compilation for a single Include.

protected override void IncludeNavigations (Microsoft.EntityFrameworkCore.Query.IncludeSpecification includeSpecification, Type resultType, System.Linq.Expressions.Expression accessorExpression, bool querySourceRequiresTracking);
override this.IncludeNavigations : Microsoft.EntityFrameworkCore.Query.IncludeSpecification * Type * System.Linq.Expressions.Expression * bool -> unit
Protected Overrides Sub IncludeNavigations (includeSpecification As IncludeSpecification, resultType As Type, accessorExpression As Expression, querySourceRequiresTracking As Boolean)

Parameters

includeSpecification
IncludeSpecification

The navigation property to be included.

resultType
Type

The type of results returned by the query.

accessorExpression
Expression

Expression for the navigation property to be included.

querySourceRequiresTracking
Boolean

A value indicating whether results of this query are to be tracked.

Applies to