Share via


ReaderModificationCommandBatch.CreateValueBufferFactory Method

Definition

Overloads

CreateValueBufferFactory(IReadOnlyList<IColumnModification>)

Creates the IRelationalValueBufferFactory that will be used for creating a ValueBuffer to consume the data reader.

CreateValueBufferFactory(IReadOnlyList<ColumnModification>)

Creates the IRelationalValueBufferFactory that will be used for creating a ValueBuffer to consume the data reader.

CreateValueBufferFactory(IReadOnlyList<IColumnModification>)

Creates the IRelationalValueBufferFactory that will be used for creating a ValueBuffer to consume the data reader.

protected virtual Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory CreateValueBufferFactory (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> columnModifications);
abstract member CreateValueBufferFactory : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
override this.CreateValueBufferFactory : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
Protected Overridable Function CreateValueBufferFactory (columnModifications As IReadOnlyList(Of IColumnModification)) As IRelationalValueBufferFactory

Parameters

columnModifications
IReadOnlyList<IColumnModification>

The list of IColumnModifications for all the columns being modified such that a ValueBuffer with appropriate slots can be created.

Returns

The factory.

Applies to

CreateValueBufferFactory(IReadOnlyList<ColumnModification>)

Creates the IRelationalValueBufferFactory that will be used for creating a ValueBuffer to consume the data reader.

protected virtual Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory CreateValueBufferFactory (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> columnModifications);
abstract member CreateValueBufferFactory : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
override this.CreateValueBufferFactory : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
Protected Overridable Function CreateValueBufferFactory (columnModifications As IReadOnlyList(Of ColumnModification)) As IRelationalValueBufferFactory

Parameters

columnModifications
IReadOnlyList<ColumnModification>

The list of ColumnModifications for all the columns being modified such that a ValueBuffer with appropriate slots can be created.

Returns

The factory.

Applies to