Looking at how you can avoid common errors in ASP.NET Core dependency injection like not registering a service and circular dependency.
Learn how to write xUnit tests for a class that injects services that uses ASP.NET Core dependency injection using mock and real instances.
Learn how to resolve scoped and transient services in an ASP.NET Core background service by creating a new scope and how it can also be used for multithreading.
Find out whether you should use the GetService or GetRequiredService method in the IServiceProvider type to resolve a service from ASP.NET Core dependency injection.
Learn how to add and inject keyed services into an ASP.NET Core application so you can add multiple implementations of the same services.
We'll show you how to use dependency injection to inject services into controllers, minimal APIs, Razor views and middleware in an ASP.NET Core application.
We find out how the singleton, scoped and transient service lifetimes work in dependency injection and the differences between each one.
.NET 8 brings keyed services, a dependency injection update for creating the same service with a different implementation in the IoC container.