다음을 통해 공유


IDbContextOptionsExtension.ApplyServices(IServiceCollection) 메서드

정의

선택한 옵션이 작동하도록 하는 데 필요한 서비스를 추가합니다. 외부가 없고 IServiceProvider EF가 내부적으로 자체 서비스 공급자를 유지 관리하는 경우에 사용됩니다. 이렇게 하면 EF가 서비스 공급자를 만들 때 데이터베이스 공급자(및 기타 확장)가 필요한 서비스를 등록할 수 있습니다.

public void ApplyServices (Microsoft.Extensions.DependencyInjection.IServiceCollection services);
public bool ApplyServices (Microsoft.Extensions.DependencyInjection.IServiceCollection services);
abstract member ApplyServices : Microsoft.Extensions.DependencyInjection.IServiceCollection -> unit
abstract member ApplyServices : Microsoft.Extensions.DependencyInjection.IServiceCollection -> bool
Public Sub ApplyServices (services As IServiceCollection)
Public Function ApplyServices (services As IServiceCollection) As Boolean

매개 변수

services
IServiceCollection

서비스를 추가할 컬렉션입니다.

반환

데이터베이스 공급자가 등록되어 있으면 True이고, false이면 이고, 그렇지 않으면 입니다.

적용 대상