ICommandBatchPreparer.BatchCommands 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
BatchCommands(IReadOnlyList<IUpdateEntry>) |
建立插入/更新/刪除指定清單所代表之 IUpdateEntry 實體所需的命令批次。 |
BatchCommands(IList<IUpdateEntry>, IUpdateAdapter) |
建立插入/更新/刪除指定清單所代表之 IUpdateEntry 實體所需的命令批次。 |
BatchCommands(IReadOnlyList<IUpdateEntry>)
建立插入/更新/刪除指定清單所代表之 IUpdateEntry 實體所需的命令批次。
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)
參數
- entries
- IReadOnlyList<IUpdateEntry>
表示要修改之實體的專案。
傳回
要執行的批次清單。
適用於
BatchCommands(IList<IUpdateEntry>, IUpdateAdapter)
建立插入/更新/刪除指定清單所代表之 IUpdateEntry 實體所需的命令批次。
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)
參數
- entries
- IList<IUpdateEntry>
表示要修改之實體的專案。
- updateAdapter
- IUpdateAdapter
模型資料。
傳回
要執行的批次清單。