Cross Wiring Dependency Injection
What is cross wiring? Cross wiring, in relation to Simple Injector and dependency injection, is the ability for Simple Injector’s dependency container to resolve services and dependencies from .NET Core’s built in configuration system. Service collection In our previous post with DI, DI with .NET 5, we discussed how dependency injection is built into the .NET Core’s framework and how services can be registered using the default built in container. This is done through the service collection and ....