EntityFrameworkServicesBuilder.TryAddProviderSpecificServices 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
資料庫提供者應該呼叫這個方法來存取基礎 ServiceCollectionMap ,以便註冊提供者特定的服務。 請注意,Entity Framework 服務的實作應該直接在 上 EntityFrameworkServicesBuilder 註冊,而不是透過這個方法註冊。
public virtual Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkServicesBuilder TryAddProviderSpecificServices (Action<Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap> serviceMap);
abstract member TryAddProviderSpecificServices : Action<Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap> -> Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkServicesBuilder
override this.TryAddProviderSpecificServices : Action<Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap> -> Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkServicesBuilder
Public Overridable Function TryAddProviderSpecificServices (serviceMap As Action(Of ServiceCollectionMap)) As EntityFrameworkServicesBuilder
參數
- serviceMap
- Action<ServiceCollectionMap>
應新增提供者服務的基礎對應。
傳回
這個產生器,以便鏈結進一步的呼叫。
備註
如需詳細資訊 和範例,請參閱資料庫提供者和延伸模組的實作 。