共用方式為


IBatchExecutor 介面

定義

針對資料庫執行一或多個插入/更新/刪除命令批次的服務。

此類型通常是由資料庫提供者使用;它通常不會用於應用程式程式碼中。

public interface IBatchExecutor
type IBatchExecutor = interface
Public Interface IBatchExecutor

備註

服務存留期為 Scoped 。 這表示每個 DbContext 實例都會使用此服務自己的實例。 實作可能相依于任何存留期註冊的其他服務。 實作不需要安全線程。

如需詳細資訊 和範例,請參閱資料庫提供者和延伸模組的實作

方法

Execute(IEnumerable<ModificationCommandBatch>, IRelationalConnection)

針對指定的資料庫連接,在批次中執行命令。

ExecuteAsync(IEnumerable<ModificationCommandBatch>, IRelationalConnection, CancellationToken)

針對指定的資料庫連接,在批次中執行命令。

適用於