描述:
InvalidOperationException: Error while validating the service descriptor ‘ServiceType: Microsoft.Extensions.Hosting.IHostedService Lifetime: Singleton ImplementationType: kafka_api_producer_consumer.TheCodeBuzzConsumer’: Cannot consume scoped service ‘SQLDBService.Context.EmployeeContext’ from singleton ‘Microsoft.Extensions.Hosting.IHostedService’.
解決方式一:
使用 IServiceScopeFactory 創建我們的上下文對象:
解決方式二:
使用 IServiceProvider 創建我們的上下文對象:
參考:https://www.thecodebuzz.com/cannot-consume-scoped-service-from-singleton-ihostedservice/