IRelationalCommandDiagnosticsLogger.CommandReaderExecutedAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Journaux de l’événement CommandExecuted .
public System.Threading.Tasks.ValueTask<System.Data.Common.DbDataReader> CommandReaderExecutedAsync (Microsoft.EntityFrameworkCore.Storage.IRelationalConnection connection, System.Data.Common.DbCommand command, Microsoft.EntityFrameworkCore.DbContext? context, Guid commandId, Guid connectionId, System.Data.Common.DbDataReader methodResult, DateTimeOffset startTime, TimeSpan duration, Microsoft.EntityFrameworkCore.Diagnostics.CommandSource commandSource, System.Threading.CancellationToken cancellationToken = default);
abstract member CommandReaderExecutedAsync : Microsoft.EntityFrameworkCore.Storage.IRelationalConnection * System.Data.Common.DbCommand * Microsoft.EntityFrameworkCore.DbContext * Guid * Guid * System.Data.Common.DbDataReader * DateTimeOffset * TimeSpan * Microsoft.EntityFrameworkCore.Diagnostics.CommandSource * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<System.Data.Common.DbDataReader>
Public Function CommandReaderExecutedAsync (connection As IRelationalConnection, command As DbCommand, context As DbContext, commandId As Guid, connectionId As Guid, methodResult As DbDataReader, startTime As DateTimeOffset, duration As TimeSpan, commandSource As CommandSource, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of DbDataReader)
Paramètres
- connection
- IRelationalConnection
Connexion.
- command
- DbCommand
Objet de commande de base de données.
- connectionId
- Guid
ID de corrélation associé au DbConnection en cours d’utilisation.
- methodResult
- DbDataReader
Valeur de retour de l’exécution de la méthode sous-jacente.
- startTime
- DateTimeOffset
Heure à laquelle l’exécution a commencé.
- duration
- TimeSpan
Durée de l’exécution de la commande, sans compter la consommation des résultats.
- commandSource
- CommandSource
Source de la commande.
- cancellationToken
- CancellationToken
CancellationToken À observer en attendant la fin de la tâche.
Retours
Résultat de l’exécution, qui peut avoir été modifié par un intercepteur.
Exceptions
Si le CancellationToken est annulé.