次の方法で共有


ICommandBatchPreparer.CreateCommandBatches メソッド

定義

一連の変更コマンドを指定すると、最大バッチ サイズやその他のバッチ処理制約などを考慮して、これらのコマンドに対してもう 1 つのすぐに実行できるバッチが返されます。

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

同じ保存操作内で、このコマンド セットの後にさらにコマンド セットが必要かどうか。

戻り値

実行するバッチの一覧。

適用対象