ICommandBatchPreparer.BatchCommands Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
BatchCommands(IReadOnlyList<IUpdateEntry>) |
Crée les lots de commandes nécessaires pour insérer/mettre à jour/supprimer les entités représentées par la liste donnée de IUpdateEntrys. |
BatchCommands(IList<IUpdateEntry>, IUpdateAdapter) |
Crée les lots de commandes nécessaires pour insérer/mettre à jour/supprimer les entités représentées par la liste donnée de IUpdateEntrys. |
BatchCommands(IReadOnlyList<IUpdateEntry>)
Crée les lots de commandes nécessaires pour insérer/mettre à jour/supprimer les entités représentées par la liste donnée 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)
Paramètres
- entries
- IReadOnlyList<IUpdateEntry>
Entrées qui représentent les entités à modifier.
Retours
Liste des lots à exécuter.
S’applique à
BatchCommands(IList<IUpdateEntry>, IUpdateAdapter)
- Source:
- ICommandBatchPreparer.cs
- Source:
- ICommandBatchPreparer.cs
- Source:
- ICommandBatchPreparer.cs
Crée les lots de commandes nécessaires pour insérer/mettre à jour/supprimer les entités représentées par la liste donnée 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)
Paramètres
- entries
- IList<IUpdateEntry>
Entrées qui représentent les entités à modifier.
- updateAdapter
- IUpdateAdapter
Données du modèle.
Retours
Liste des lots à exécuter.