EntityQueryModelVisitorDependencies Class

Definition

Service dependencies parameter class for EntityQueryModelVisitor

This type is typically used by database providers (and other extensions). It is generally not used in application code.

Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process.

public sealed class EntityQueryModelVisitorDependencies
type EntityQueryModelVisitorDependencies = class
Public NotInheritable Class EntityQueryModelVisitorDependencies
Inheritance
EntityQueryModelVisitorDependencies

Constructors

EntityQueryModelVisitorDependencies(IQueryOptimizer, INavigationRewritingExpressionVisitorFactory, IQuerySourceTracingExpressionVisitorFactory, IEntityResultFindingExpressionVisitorFactory, IEagerLoadingExpressionVisitorFactory, ITaskBlockingExpressionVisitor, IMemberAccessBindingExpressionVisitorFactory, IProjectionExpressionVisitorFactory, IEntityQueryableExpressionVisitorFactory, IQueryAnnotationExtractor, IResultOperatorHandler, IEntityMaterializerSource, IExpressionPrinter, IQueryModelGenerator)

Creates the service dependencies parameter object for a EntityQueryModelVisitorFactory.

This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process.

EntityQueryModelVisitorDependencies(IQueryOptimizer, INavigationRewritingExpressionVisitorFactory, IQuerySourceTracingExpressionVisitorFactory, IEntityResultFindingExpressionVisitorFactory, ITaskBlockingExpressionVisitor, IMemberAccessBindingExpressionVisitorFactory, IProjectionExpressionVisitorFactory, IEntityQueryableExpressionVisitorFactory, IQueryAnnotationExtractor, IResultOperatorHandler, IEntityMaterializerSource, IExpressionPrinter)

Creates the service dependencies parameter object for a EntityQueryModelVisitorFactory.

This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process.

EntityQueryModelVisitorDependencies(IQueryOptimizer, INavigationRewritingExpressionVisitorFactory, IQuerySourceTracingExpressionVisitorFactory, IEntityResultFindingExpressionVisitorFactory, ITaskBlockingExpressionVisitor, IMemberAccessBindingExpressionVisitorFactory, IProjectionExpressionVisitorFactory, IEntityQueryableExpressionVisitorFactory, IQueryAnnotationExtractor, IResultOperatorHandler, IEntityMaterializerSource, IExpressionPrinter, IQueryModelGenerator)

Creates the service dependencies parameter object for a EntityQueryModelVisitorFactory.

This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process.

Properties

EagerLoadingExpressionVisitorFactory

Gets the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.Internal.IEagerLoadingExpressionVisitorFactory to be used when processing a query.

EntityMaterializerSource

Gets the Microsoft.EntityFrameworkCore.Metadata.Internal.IEntityMaterializerSource to be used when processing a query.

EntityQueryableExpressionVisitorFactory

Gets the IEntityQueryableExpressionVisitorFactory to be used when processing a query.

EntityResultFindingExpressionVisitorFactory

Gets the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.Internal.IEntityResultFindingExpressionVisitorFactory to be used when processing a query.

ExpressionPrinter

Gets the Microsoft.EntityFrameworkCore.Query.Internal.IExpressionPrinter to be used when processing a query.

MemberAccessBindingExpressionVisitorFactory

Gets the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.Internal.IMemberAccessBindingExpressionVisitorFactory to be used when processing a query.

NavigationRewritingExpressionVisitorFactory

Gets the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.Internal.INavigationRewritingExpressionVisitorFactory to be used when processing a query.

ProjectionExpressionVisitorFactory

Gets the IProjectionExpressionVisitorFactory to be used when processing a query.

QueryAnnotationExtractor

Gets the Microsoft.EntityFrameworkCore.Query.Internal.IQueryAnnotationExtractor to be used when processing a query.

QueryModelGenerator

Gets the Microsoft.EntityFrameworkCore.Query.Internal.IQueryModelGenerator to be used when processing a query.

QueryOptimizer

Gets the Microsoft.EntityFrameworkCore.Query.Internal.IQueryOptimizer to be used when processing a query.

QuerySourceTracingExpressionVisitorFactory

Gets the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.Internal.IQuerySourceTracingExpressionVisitorFactory to be used when processing a query.

ResultOperatorHandler

Gets the IResultOperatorHandler to be used when processing a query.

TaskBlockingExpressionVisitor

Gets the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.Internal.ITaskBlockingExpressionVisitor to be used when processing a query.

Methods

With(IEagerLoadingExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(IEntityMaterializerSource)

Clones this dependency parameter object with one service replaced.

With(IEntityQueryableExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(IEntityResultFindingExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(IExpressionPrinter)

Clones this dependency parameter object with one service replaced.

With(IMemberAccessBindingExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(INavigationRewritingExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(IProjectionExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(IQueryAnnotationExtractor)

Clones this dependency parameter object with one service replaced.

With(IQueryModelGenerator)

Clones this dependency parameter object with one service replaced.

With(IQueryOptimizer)

Clones this dependency parameter object with one service replaced.

With(IQuerySourceTracingExpressionVisitorFactory)

Clones this dependency parameter object with one service replaced.

With(IResultOperatorHandler)

Clones this dependency parameter object with one service replaced.

With(ITaskBlockingExpressionVisitor)

Clones this dependency parameter object with one service replaced.

Applies to