ReaderModificationCommandBatch 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
ReaderModificationCommandBatch(ModificationCommandBatchFactoryDependencies)
Creates a new ReaderModificationCommandBatch instance.
protected ReaderModificationCommandBatch (Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies dependencies);
new Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch : Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies -> Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch
Protected Sub New (dependencies As ModificationCommandBatchFactoryDependencies)
Parameters
- dependencies
- ModificationCommandBatchFactoryDependencies
Service dependencies.
Applies to
ReaderModificationCommandBatch(ModificationCommandBatchFactoryDependencies, Nullable<Int32>)
Creates a new ReaderModificationCommandBatch instance.
protected ReaderModificationCommandBatch (Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies dependencies, int? maxBatchSize = default);
new Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch : Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies * Nullable<int> -> Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch
Protected Sub New (dependencies As ModificationCommandBatchFactoryDependencies, Optional maxBatchSize As Nullable(Of Integer) = Nothing)
Parameters
- dependencies
- ModificationCommandBatchFactoryDependencies
Service dependencies.
Applies to
ReaderModificationCommandBatch(IRelationalCommandBuilderFactory, ISqlGenerationHelper, IUpdateSqlGenerator, IRelationalValueBufferFactoryFactory)
Creates a new ReaderModificationCommandBatch instance.
protected ReaderModificationCommandBatch (Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory commandBuilderFactory, Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper sqlGenerationHelper, Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator updateSqlGenerator, Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory valueBufferFactoryFactory);
new Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory * Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper * Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator * Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory -> Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch
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