IRelationalCommandDiagnosticsLogger.CommandNonQueryExecuted Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Logs for the CommandExecuted event.
public int CommandNonQueryExecuted (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);
abstract member CommandNonQueryExecuted : Microsoft.EntityFrameworkCore.Storage.IRelationalConnection * System.Data.Common.DbCommand * Microsoft.EntityFrameworkCore.DbContext * Guid * Guid * int * DateTimeOffset * TimeSpan * Microsoft.EntityFrameworkCore.Diagnostics.CommandSource -> int
Public Function CommandNonQueryExecuted (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) As Integer
Parameters
- connection
- IRelationalConnection
The connection.
- command
- DbCommand
The database command object.
- connectionId
- Guid
The correlation ID associated with the DbConnection being used.
- methodResult
- Int32
The return value from the underlying method execution.
- startTime
- DateTimeOffset
The time that execution began.
- duration
- TimeSpan
The duration of the command execution, not including consuming results.
- commandSource
- CommandSource
Source of the command.
Returns
The result of execution, which may have been modified by an interceptor.
Applies to
Entity Framework