Monday, September 16, 2024

How to inject scope service into Singleton Service ?

 ASP.NET Core has three service lifetimes:

  • Transient
  • Singleton
  • Scoped

    How to resolve inject scope service object into singleton service?  Below SomeSingletonService will inject scope service object and resolve it.
public class SomeSingletonService(IServiceScopeFactory serviceScopeFactory)
: SingletonService
{
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
using IServiceScope scope = serviceScopeFactory.CreateScope();
var dbContext = scope
.ServiceProvider
.GetRequiredService<ApplicationDbContext>();
// Do some background processing with the EF database context.
await DoWorkAsync(dbContext);
}
}
view raw DIscoped.cs hosted with ❤ by GitHub

No comments :