Skip to content

Instantly share code, notes, and snippets.

@gaufung
Created August 15, 2021 01:43
Show Gist options
  • Save gaufung/053bf6dd9770e0b7dd82d7ff7e79b8a8 to your computer and use it in GitHub Desktop.
Save gaufung/053bf6dd9770e0b7dd82d7ff7e79b8a8 to your computer and use it in GitHub Desktop.
public void ConfigureService(IServiceCollection services)
{
service.AddSingleton<MyService>(sp => {
ILoggerFactory loggerFactory = sp.GetService<ILoggerFactory>();
MyService service = new MyServcie(loggerFactory);
return service;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment