Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created February 1, 2020 16:58
Show Gist options
  • Save CoreProgramm/2b0a2f492d40e1c4a255ae4b5c9d8397 to your computer and use it in GitHub Desktop.
Save CoreProgramm/2b0a2f492d40e1c4a255ae4b5c9d8397 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.AddSingleton<IMobileService, MobileService>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment