Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created January 18, 2020 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/2216dca6e3013bd021a7931583be6c39 to your computer and use it in GitHub Desktop.
Save Ibro/2216dca6e3013bd021a7931583be6c39 to your computer and use it in GitHub Desktop.
ASP.NET Core DI
public void ConfigureServices(IServiceCollection services)
{
services.AddScoped<IMyScopedService, MyScopedService>();
services.AddSingleton<IMyConnectionManager, MyConnectionManager>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment