IDbCommandInterceptor.CommandCreated(CommandEndEventData, DbCommand) 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.
Appelé immédiatement après qu’EF appelle CreateCommand().
public System.Data.Common.DbCommand CommandCreated (Microsoft.EntityFrameworkCore.Diagnostics.CommandEndEventData eventData, System.Data.Common.DbCommand result);
public virtual System.Data.Common.DbCommand CommandCreated (Microsoft.EntityFrameworkCore.Diagnostics.CommandEndEventData eventData, System.Data.Common.DbCommand result);
abstract member CommandCreated : Microsoft.EntityFrameworkCore.Diagnostics.CommandEndEventData * System.Data.Common.DbCommand -> System.Data.Common.DbCommand
abstract member CommandCreated : Microsoft.EntityFrameworkCore.Diagnostics.CommandEndEventData * System.Data.Common.DbCommand -> System.Data.Common.DbCommand
override this.CommandCreated : Microsoft.EntityFrameworkCore.Diagnostics.CommandEndEventData * System.Data.Common.DbCommand -> System.Data.Common.DbCommand
Public Function CommandCreated (eventData As CommandEndEventData, result As DbCommand) As DbCommand
Public Overridable Function CommandCreated (eventData As CommandEndEventData, result As DbCommand) As DbCommand
Paramètres
- eventData
- CommandEndEventData
Informations contextuelles sur la commande et l’exécution.
- result
- DbCommand
Résultat de l’appel à CreateCommand(). Cette valeur est généralement utilisée comme valeur de retour pour l’implémentation de cette méthode.
Retours
Résultat utilisé par EF.
Une implémentation de cette méthode pour tout intercepteur qui ne tente pas de modifier le résultat consiste à retourner la result
valeur passée.
Remarques
Cette méthode est toujours appelée si un intercepteur a supprimé la création d’une commande dans CommandCreating(CommandCorrelatedEventData, InterceptionResult<DbCommand>). Dans ce cas, result
est le résultat retourné par CommandCreating(CommandCorrelatedEventData, InterceptionResult<DbCommand>).