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

이 쿼리의 결과를 추적할지 여부를 나타내는 값입니다.

적용 대상