Table of Contents

Class CommandBatchPreparerDependencies

Namespace
Microsoft.EntityFrameworkCore.Update.Internal
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

Service dependencies parameter class for CommandBatchPreparer

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.

The service lifetime is Scoped. This means that each Microsoft.EntityFrameworkCore.DbContext instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe.

public sealed class CommandBatchPreparerDependencies
Inheritance
CommandBatchPreparerDependencies
Inherited Members

Constructors

CommandBatchPreparerDependencies(IModificationCommandBatchFactory, IParameterNameGeneratorFactory, IComparer<ModificationCommand>, IKeyValueIndexFactorySource, ILoggingOptions, IDiagnosticsLogger<Update>, IDbContextOptions)

Creates the service dependencies parameter object for a CommandBatchPreparer.

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

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.

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public CommandBatchPreparerDependencies(IModificationCommandBatchFactory modificationCommandBatchFactory, IParameterNameGeneratorFactory parameterNameGeneratorFactory, IComparer<ModificationCommand> modificationCommandComparer, IKeyValueIndexFactorySource keyValueIndexFactorySource, ILoggingOptions loggingOptions, IDiagnosticsLogger<DbLoggerCategory.Update> updateLogger, IDbContextOptions options)

Parameters

modificationCommandBatchFactory IModificationCommandBatchFactory
parameterNameGeneratorFactory IParameterNameGeneratorFactory
modificationCommandComparer IComparer<ModificationCommand>
keyValueIndexFactorySource IKeyValueIndexFactorySource
loggingOptions ILoggingOptions
updateLogger IDiagnosticsLogger<Update>
options IDbContextOptions

Properties

KeyValueIndexFactorySource

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public IKeyValueIndexFactorySource KeyValueIndexFactorySource { get; }

Property Value

IKeyValueIndexFactorySource

LoggingOptions

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public ILoggingOptions LoggingOptions { get; }

Property Value

ILoggingOptions

ModificationCommandBatchFactory

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public IModificationCommandBatchFactory ModificationCommandBatchFactory { get; }

Property Value

IModificationCommandBatchFactory

ModificationCommandComparer

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public IComparer<ModificationCommand> ModificationCommandComparer { get; }

Property Value

IComparer<ModificationCommand>

Options

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public IDbContextOptions Options { get; }

Property Value

IDbContextOptions

ParameterNameGeneratorFactory

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public IParameterNameGeneratorFactory ParameterNameGeneratorFactory { get; }

Property Value

IParameterNameGeneratorFactory

UpdateLogger

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public IDiagnosticsLogger<DbLoggerCategory.Update> UpdateLogger { get; }

Property Value

IDiagnosticsLogger<Update>

Methods

With(IDiagnosticsLogger<Update>)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(IDiagnosticsLogger<DbLoggerCategory.Update> updateLogger)

Parameters

updateLogger IDiagnosticsLogger<Update>

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.

With(ILoggingOptions)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(ILoggingOptions loggingOptions)

Parameters

loggingOptions ILoggingOptions

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.

With(IDbContextOptions)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(IDbContextOptions options)

Parameters

options IDbContextOptions

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.

With(IParameterNameGeneratorFactory)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(IParameterNameGeneratorFactory parameterNameGeneratorFactory)

Parameters

parameterNameGeneratorFactory IParameterNameGeneratorFactory

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.

With(IModificationCommandBatchFactory)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(IModificationCommandBatchFactory modificationCommandBatchFactory)

Parameters

modificationCommandBatchFactory IModificationCommandBatchFactory

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.

With(IKeyValueIndexFactorySource)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(IKeyValueIndexFactorySource keyValueIndexFactorySource)

Parameters

keyValueIndexFactorySource IKeyValueIndexFactorySource

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.

With(IComparer<ModificationCommand>)

Clones this dependency parameter object with one service replaced.

public CommandBatchPreparerDependencies With(IComparer<ModificationCommand> modificationCommandComparer)

Parameters

modificationCommandComparer IComparer<ModificationCommand>

A replacement for the current dependency of this type.

Returns

CommandBatchPreparerDependencies

A new parameter object with the given service replaced.