ICommandBatchPreparer.BatchCommands Método

Definición

Sobrecargas

BatchCommands(IReadOnlyList<IUpdateEntry>)

Crea los lotes de comandos necesarios para insertar, actualizar o eliminar las entidades representadas por la lista especificada de IUpdateEntrys.

BatchCommands(IList<IUpdateEntry>, IUpdateAdapter)

Crea los lotes de comandos necesarios para insertar, actualizar o eliminar las entidades representadas por la lista especificada de IUpdateEntrys.

BatchCommands(IReadOnlyList<IUpdateEntry>)

Crea los lotes de comandos necesarios para insertar, actualizar o eliminar las entidades representadas por la lista especificada de IUpdateEntrys.

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch> BatchCommands (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
abstract member BatchCommands : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> seq<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch>
Public Function BatchCommands (entries As IReadOnlyList(Of IUpdateEntry)) As IEnumerable(Of ModificationCommandBatch)

Parámetros

entries
IReadOnlyList<IUpdateEntry>

Entradas que representan las entidades que se van a modificar.

Devoluciones

Lista de lotes que se van a ejecutar.

Se aplica a

BatchCommands(IList<IUpdateEntry>, IUpdateAdapter)

Crea los lotes de comandos necesarios para insertar, actualizar o eliminar las entidades representadas por la lista especificada de IUpdateEntrys.

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch> BatchCommands (System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries, Microsoft.EntityFrameworkCore.Update.IUpdateAdapter updateAdapter);
abstract member BatchCommands : System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> * Microsoft.EntityFrameworkCore.Update.IUpdateAdapter -> seq<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch>
Public Function BatchCommands (entries As IList(Of IUpdateEntry), updateAdapter As IUpdateAdapter) As IEnumerable(Of ModificationCommandBatch)

Parámetros

entries
IList<IUpdateEntry>

Entradas que representan las entidades que se van a modificar.

updateAdapter
IUpdateAdapter

Datos del modelo.

Devoluciones

Lista de lotes que se van a ejecutar.

Se aplica a