EntityQueryModelVisitor.IncludeNavigations メソッド

定義

オーバーロード

IncludeNavigations(QueryModel)

LINQ クエリで要求された関連データが含まれます。

IncludeNavigations(QueryModel, IReadOnlyCollection<IncludeSpecification>)

LINQ クエリで要求された関連データが含まれます。

IncludeNavigations(IncludeSpecification, Type, Expression, Boolean)

LINQ クエリで要求された特定のナビゲーション プロパティが含まれます。

IncludeNavigations(QueryModel)

LINQ クエリで要求された関連データが含まれます。

protected virtual void IncludeNavigations (Remotion.Linq.QueryModel queryModel);
abstract member IncludeNavigations : Remotion.Linq.QueryModel -> unit
override this.IncludeNavigations : Remotion.Linq.QueryModel -> unit
Protected Overridable Sub IncludeNavigations (queryModel As QueryModel)

パラメーター

queryModel
Remotion.Linq.QueryModel

クエリです。

適用対象

IncludeNavigations(QueryModel, IReadOnlyCollection<IncludeSpecification>)

LINQ クエリで要求された関連データが含まれます。

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

パラメーター

queryModel
Remotion.Linq.QueryModel

クエリです。

includeSpecifications
IReadOnlyCollection<IncludeSpecification>

含める関連データ。

適用対象

IncludeNavigations(IncludeSpecification, Type, Expression, Boolean)

LINQ クエリで要求された特定のナビゲーション プロパティが含まれます。

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

パラメーター

includeSpecification
IncludeSpecification

含めるナビゲーション プロパティ。

resultType
Type

クエリによって返される結果の種類。

accessorExpression
Expression

含めるナビゲーション プロパティの式。

querySourceRequiresTracking
Boolean

このクエリの結果を追跡するかどうかを示す値。

適用対象