DbCommandDispatcher.NonQueryAsync 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.
Envoie NonQueryExecuting(DbCommand, DbCommandInterceptionContext<Int32>) et NonQueryExecuted(DbCommand, DbCommandInterceptionContext<Int32>) à tout inscrit IDbCommandInterceptor sur DbInterception avant/après avoir effectué un appel à ExecuteNonQueryAsync(CancellationToken).
public virtual System.Threading.Tasks.Task<int> NonQueryAsync (System.Data.Common.DbCommand command, System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext interceptionContext, System.Threading.CancellationToken cancellationToken);
abstract member NonQueryAsync : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
override this.NonQueryAsync : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Paramètres
- command
- DbCommand
Commande sur laquelle l’opération sera exécutée.
- interceptionContext
- DbCommandInterceptionContext
Informations facultatives sur le contexte de l’appel effectué.
- cancellationToken
- CancellationToken
Jeton d’annulation pour l’opération asynchrone.
Retours
Résultat de l’opération, qui peut avoir été modifié par les intercepteurs.
Remarques
Notez que le résultat de l’exécution de la commande est retourné par cette méthode. Le résultat n’est pas disponible dans le contexte d’interception passé dans cette méthode, car le contexte d’interception est cloné avant d’être transmis aux intercepteurs.