共用方式為


ICommandBatchPreparer.CreateCommandBatches 方法

定義

假設有一組修改命令,會針對這些命令傳回一個可立即執行的批次,例如批次大小上限和其他批次處理條件約束。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch> CreateCommandBatches (System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand> commandSet, bool moreCommandSets);
abstract member CreateCommandBatches : seq<Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand> * bool -> seq<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch>
Public Function CreateCommandBatches (commandSet As IEnumerable(Of IReadOnlyModificationCommand), moreCommandSets As Boolean) As IEnumerable(Of ModificationCommandBatch)

參數

commandSet
IEnumerable<IReadOnlyModificationCommand>

要以批次方式組織的命令集。

moreCommandSets
Boolean

在相同的儲存作業內,是否預期會有更多命令集。

傳回

要執行的批次清單。

適用於