IRelationalCommandDiagnosticsLogger.CommandNonQueryExecutedAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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
数据库命令对象。
- connectionId
- Guid
与正在使用的 DbConnection 关联的关联 ID。
- methodResult
- Int32
基础方法执行的返回值。
- startTime
- DateTimeOffset
执行开始的时间。
- duration
- TimeSpan
命令执行的持续时间,不包括使用结果。
- commandSource
- CommandSource
命令的源。
- cancellationToken
- CancellationToken
等待 CancellationToken 任务完成时要观察的 。
返回
执行的结果,该结果可能已被侦听器修改。