DbCommandDispatcher.Scalar(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 ScalarExecuting(DbCommand, DbCommandInterceptionContext<Object>) et ScalarExecuted(DbCommand, DbCommandInterceptionContext<Object>) à tout inscrit IDbCommandInterceptor sur DbInterception avant/après avoir effectué un appel à ExecuteScalar().
public virtual object Scalar (System.Data.Common.DbCommand command, System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext interceptionContext);
abstract member Scalar : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext -> obj
override this.Scalar : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext -> obj
Public Overridable Function Scalar (command As DbCommand, interceptionContext As DbCommandInterceptionContext) As Object
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.