Dependency Injection Options
Transient Shortest lifespan : An instance will be created every time one is requested. Each request an instance of given class,the framework will give them each their own instance and not share anything between them Scoped A single instance will be created for each “scope”.In ASP.NET Core MVC,the “scope” is almost always the current… Read More »