AffectedCountModificationCommandBatch Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AffectedCountModificationCommandBatch(ModificationCommandBatchFactoryDependencies)
Creates a new AffectedCountModificationCommandBatch instance.
protected AffectedCountModificationCommandBatch (Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies dependencies);
new Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch : Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies -> Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch
Protected Sub New (dependencies As ModificationCommandBatchFactoryDependencies)
Parameters
- dependencies
- ModificationCommandBatchFactoryDependencies
Service dependencies.
Applies to
AffectedCountModificationCommandBatch(ModificationCommandBatchFactoryDependencies, Nullable<Int32>)
Creates a new AffectedCountModificationCommandBatch instance.
protected AffectedCountModificationCommandBatch (Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies dependencies, int? maxBatchSize = default);
new Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch : Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies * Nullable<int> -> Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch
Protected Sub New (dependencies As ModificationCommandBatchFactoryDependencies, Optional maxBatchSize As Nullable(Of Integer) = Nothing)
Parameters
- dependencies
- ModificationCommandBatchFactoryDependencies
Service dependencies.
Applies to
AffectedCountModificationCommandBatch(IRelationalCommandBuilderFactory, ISqlGenerationHelper, IUpdateSqlGenerator, IRelationalValueBufferFactoryFactory)
Creates a new AffectedCountModificationCommandBatch instance.
protected AffectedCountModificationCommandBatch (Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory commandBuilderFactory, Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper sqlGenerationHelper, Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator updateSqlGenerator, Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory valueBufferFactoryFactory);
new Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory * Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper * Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator * Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory -> Microsoft.EntityFrameworkCore.Update.AffectedCountModificationCommandBatch
Protected Sub New (commandBuilderFactory As IRelationalCommandBuilderFactory, sqlGenerationHelper As ISqlGenerationHelper, updateSqlGenerator As IUpdateSqlGenerator, valueBufferFactoryFactory As IRelationalValueBufferFactoryFactory)
Parameters
- commandBuilderFactory
- IRelationalCommandBuilderFactory
The builder to build commands.
- sqlGenerationHelper
- ISqlGenerationHelper
A helper for SQL generation.
- updateSqlGenerator
- IUpdateSqlGenerator
A SQL generator for insert, update, and delete commands.
- valueBufferFactoryFactory
- IRelationalValueBufferFactoryFactory
A factory for creating factories for creating ValueBuffers to be used when reading from the data reader.
Applies to
Entity Framework