共用方式為


DbConfiguration.AddInterceptor(IDbInterceptor) 方法

定義

從衍生自 DbConfiguration 的類別建構函式呼叫這個方法,以在應用程式啟動時註冊 IDbInterceptor 。 請注意,您也可以使用 DbInterception 隨時新增和移除攔截器。

protected internal void AddInterceptor (System.Data.Entity.Infrastructure.Interception.IDbInterceptor interceptor);
member this.AddInterceptor : System.Data.Entity.Infrastructure.Interception.IDbInterceptor -> unit
Protected Friend Sub AddInterceptor (interceptor As IDbInterceptor)

參數

interceptor
IDbInterceptor

要註冊的攔截器。

備註

這個方法會以方便且可探索的方式提供,以將設定新增至 Entity Framework。 在內部運作方式與使用 AddDependencyResolver 為 新增適當的解析程式 IDbInterceptor 相同。 這表示,如有需要,可以使用自訂解析程式或由 Inversion-of-Control 容器支援的解析程式來達成相同的功能。

適用於