Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created February 1, 2020 18:51
Show Gist options
  • Save CoreProgramm/56a40eb9259abbf34032663cf1947535 to your computer and use it in GitHub Desktop.
Save CoreProgramm/56a40eb9259abbf34032663cf1947535 to your computer and use it in GitHub Desktop.
Difference between AddSingleton vs AddScoped vs AddTransient in asp.net core
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews();
services.AddMvc();
services.AddTransient<IMobileService, MobileService>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment