DbCommandDispatcher.NonQuery(DbCommand, DbCommandInterceptionContext) 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 à ExecuteNonQuery().
public virtual int NonQuery (System.Data.Common.DbCommand command, System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext interceptionContext);
abstract member NonQuery : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext -> int
override this.NonQuery : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext -> int
Public Overridable Function NonQuery (command As DbCommand, interceptionContext As DbCommandInterceptionContext) As Integer
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é.
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.