Dela via


SingularModificationCommandBatch Constructors

Definition

Overloads

SingularModificationCommandBatch(ModificationCommandBatchFactoryDependencies)

Creates a new SingularModificationCommandBatch instance.

SingularModificationCommandBatch(IRelationalCommandBuilderFactory, ISqlGenerationHelper, IUpdateSqlGenerator, IRelationalValueBufferFactoryFactory)

Creates a new SingularModificationCommandBatch instance.

SingularModificationCommandBatch(ModificationCommandBatchFactoryDependencies)

Creates a new SingularModificationCommandBatch instance.

public SingularModificationCommandBatch (Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies dependencies);
new Microsoft.EntityFrameworkCore.Update.SingularModificationCommandBatch : Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies -> Microsoft.EntityFrameworkCore.Update.SingularModificationCommandBatch
Public Sub New (dependencies As ModificationCommandBatchFactoryDependencies)

Parameters

dependencies
ModificationCommandBatchFactoryDependencies

Service dependencies.

Applies to

SingularModificationCommandBatch(IRelationalCommandBuilderFactory, ISqlGenerationHelper, IUpdateSqlGenerator, IRelationalValueBufferFactoryFactory)

Creates a new SingularModificationCommandBatch instance.

public SingularModificationCommandBatch (Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory commandBuilderFactory, Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper sqlGenerationHelper, Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator updateSqlGenerator, Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory valueBufferFactoryFactory);
new Microsoft.EntityFrameworkCore.Update.SingularModificationCommandBatch : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory * Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper * Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator * Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory -> Microsoft.EntityFrameworkCore.Update.SingularModificationCommandBatch
Public 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