.NET 8 Dependency Injection
Dependency Injection (DI) is a design pattern used to decouple dependencies between components (services). It achieves this by delegating the creation and management of dependencies to an external container, rather than having components create their dependent objects directly.
In .NET, this is primarily implemented using IServiceCollection
and IServiceProvider
, which are now integral parts of the runtime libraries, making them universally available across the .NET platform!
1 ServiceCollection
IServiceCollection
is essentially a list of ServiceDescriptor
objects. A `ServiceDescr...