Condividi tramite


ICommandBatchPreparer.BatchCommands Metodo

Definizione

Overload

BatchCommands(IReadOnlyList<IUpdateEntry>)

Crea i batch di comandi necessari per inserire/aggiornare/eliminare le entità rappresentate dall'elenco specificato di IUpdateEntrys.

BatchCommands(IList<IUpdateEntry>, IUpdateAdapter)

Crea i batch di comandi necessari per inserire/aggiornare/eliminare le entità rappresentate dall'elenco specificato di IUpdateEntrys.

BatchCommands(IReadOnlyList<IUpdateEntry>)

Crea i batch di comandi necessari per inserire/aggiornare/eliminare le entità rappresentate dall'elenco specificato di 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)

Parametri

entries
IReadOnlyList<IUpdateEntry>

Voci che rappresentano le entità da modificare.

Restituisce

Elenco di batch da eseguire.

Si applica a

BatchCommands(IList<IUpdateEntry>, IUpdateAdapter)

Crea i batch di comandi necessari per inserire/aggiornare/eliminare le entità rappresentate dall'elenco specificato di 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)

Parametri

entries
IList<IUpdateEntry>

Voci che rappresentano le entità da modificare.

updateAdapter
IUpdateAdapter

Dati del modello.

Restituisce

Elenco di batch da eseguire.

Si applica a