Keyed Dependency Injection using .NET
Sometimes you get to a point where you have two different implementations of an interface that you like to consume according to a context.
.NET doesn’t support this scenario out of the box.
This post will discuss how can you do it without…