Condividi tramite


DbCommandInterceptor.ReaderExecuted Metodo

Definizione

Chiamato immediatamente dopo le chiamate ExecuteReader()EF .

Questo metodo viene ancora chiamato se un intercettatore ha eliminato l'esecuzione di un comando in ReaderExecuting(DbCommand, CommandEventData, InterceptionResult<DbDataReader>). In questo caso, result è il risultato restituito da ReaderExecuting(DbCommand, CommandEventData, InterceptionResult<DbDataReader>).

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

Parametri

command
DbCommand

Comando.

eventData
CommandExecutedEventData

Informazioni contestuali sul comando e sull'esecuzione.

result
DbDataReader

Risultato della chiamata a ExecuteReader(). Questo valore viene in genere usato come valore restituito per l'implementazione di questo metodo.

Restituisce

Risultato che ef userà. Una normale implementazione di questo metodo per qualsiasi intercettatore che non tenta di modificare il risultato consiste nel restituire il result valore passato.

Implementazioni

Si applica a