Partager via


DbCommandInterceptor.DataReaderDisposing Méthode

Définition

Appelé lorsque l’exécution d’un DbDataReader est sur le point d’être supprimée.

public virtual Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult DataReaderDisposing (System.Data.Common.DbCommand command, Microsoft.EntityFrameworkCore.Diagnostics.DataReaderDisposingEventData eventData, Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult result);
abstract member DataReaderDisposing : System.Data.Common.DbCommand * Microsoft.EntityFrameworkCore.Diagnostics.DataReaderDisposingEventData * Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult -> Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult
override this.DataReaderDisposing : System.Data.Common.DbCommand * Microsoft.EntityFrameworkCore.Diagnostics.DataReaderDisposingEventData * Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult -> Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult
Public Overridable Function DataReaderDisposing (command As DbCommand, eventData As DataReaderDisposingEventData, result As InterceptionResult) As InterceptionResult

Paramètres

command
DbCommand

Commande.

eventData
DataReaderDisposingEventData

Informations contextuelles sur la commande et le lecteur.

result
InterceptionResult

Représente le résultat actuel s’il en existe un. Cette valeur aura la IsSuppressed valeur true si un intercepteur précédent a supprimé l’exécution en appelant Suppress(). Cette valeur est généralement utilisée comme valeur de retour pour l’implémentation de cette méthode.

Retours

Si IsSuppressed a la valeur false, l’ef continue comme d’habitude. Si IsSuppressed est true, EF supprime l’opération qu’il était sur le point d’effectuer. Une implémentation normale de cette méthode pour tout intercepteur qui ne tente pas de supprimer l’opération consiste à retourner la result valeur transmise.

Implémente

S’applique à