RelationalLoggerExtensions.CommandCreated 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 CommandCreated event.
public static System.Data.Common.DbCommand CommandCreated (this Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger<Microsoft.EntityFrameworkCore.DbLoggerCategory.Database.Command> diagnostics, Microsoft.EntityFrameworkCore.Storage.IRelationalConnection connection, System.Data.Common.DbCommand command, Microsoft.EntityFrameworkCore.Diagnostics.DbCommandMethod commandMethod, Microsoft.EntityFrameworkCore.DbContext context, Guid commandId, Guid connectionId, DateTimeOffset startTime, TimeSpan duration);
static member CommandCreated : Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger<Microsoft.EntityFrameworkCore.DbLoggerCategory.Database.Command> * Microsoft.EntityFrameworkCore.Storage.IRelationalConnection * System.Data.Common.DbCommand * Microsoft.EntityFrameworkCore.Diagnostics.DbCommandMethod * Microsoft.EntityFrameworkCore.DbContext * Guid * Guid * DateTimeOffset * TimeSpan -> System.Data.Common.DbCommand
<Extension()>
Public Function CommandCreated (diagnostics As IDiagnosticsLogger(Of DbLoggerCategory.Database.Command), connection As IRelationalConnection, command As DbCommand, commandMethod As DbCommandMethod, context As DbContext, commandId As Guid, connectionId As Guid, startTime As DateTimeOffset, duration As TimeSpan) As DbCommand
Parameters
- diagnostics
- IDiagnosticsLogger<DbLoggerCategory.Database.Command>
The diagnostics logger to use.
- connection
- IRelationalConnection
The connection.
- command
- DbCommand
The database command object.
- commandMethod
- DbCommandMethod
The type of method that will be called on this command.
- connectionId
- Guid
The correlation ID associated with the DbConnection being used.
- startTime
- DateTimeOffset
The time that execution began.
- duration
- TimeSpan
The duration of the command creation.
Returns
An intercepted result.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework