Share via


IDbCommandInterceptor.ReaderExecuted 方法

定义

此方法在调用 ExecuteReader(CommandBehavior) 或其异步对应项之一后调用。 可以通过设置 Result来更改实体框架使用的结果。

public void ReaderExecuted (System.Data.Common.DbCommand command, System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext<System.Data.Common.DbDataReader> interceptionContext);
abstract member ReaderExecuted : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext<System.Data.Common.DbDataReader> -> unit
Public Sub ReaderExecuted (command As DbCommand, interceptionContext As DbCommandInterceptionContext(Of DbDataReader))

参数

command
DbCommand

正在执行的命令。

interceptionContext
DbCommandInterceptionContext<DbDataReader>

与调用关联的上下文信息。

注解

对于异步操作,除非异步任务完成或失败,否则不会调用此方法。

适用于