共用方式為


IRelationalCommandDiagnosticsLogger.CommandNonQueryExecutedAsync 方法

定義

CommandExecuted事件的記錄。

public System.Threading.Tasks.ValueTask<int> CommandNonQueryExecutedAsync (Microsoft.EntityFrameworkCore.Storage.IRelationalConnection connection, System.Data.Common.DbCommand command, Microsoft.EntityFrameworkCore.DbContext? context, Guid commandId, Guid connectionId, int methodResult, DateTimeOffset startTime, TimeSpan duration, Microsoft.EntityFrameworkCore.Diagnostics.CommandSource commandSource, System.Threading.CancellationToken cancellationToken = default);
abstract member CommandNonQueryExecutedAsync : Microsoft.EntityFrameworkCore.Storage.IRelationalConnection * System.Data.Common.DbCommand * Microsoft.EntityFrameworkCore.DbContext * Guid * Guid * int * DateTimeOffset * TimeSpan * Microsoft.EntityFrameworkCore.Diagnostics.CommandSource * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
Public Function CommandNonQueryExecutedAsync (connection As IRelationalConnection, command As DbCommand, context As DbContext, commandId As Guid, connectionId As Guid, methodResult As Integer, startTime As DateTimeOffset, duration As TimeSpan, commandSource As CommandSource, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Integer)

參數

connection
IRelationalConnection

連接。

command
DbCommand

資料庫命令物件。

context
DbContext

DbContext目前使用的 ,如果不知道,則為 null。

commandId
Guid

與指定 DbCommand 相關聯的相互關聯識別碼。

connectionId
Guid

DbConnection 所使用 關聯的相互關聯識別碼。

methodResult
Int32

基礎方法執行的傳回值。

startTime
DateTimeOffset

開始執行的時間。

duration
TimeSpan

命令執行的持續時間,不包括取用結果。

commandSource
CommandSource

命令的來源。

cancellationToken
CancellationToken

等候 CancellationToken 工作完成時要觀察的 。

傳回

執行的結果,可能已經由攔截器修改。

例外狀況

適用於