see also Which C#/.NET Dependency Injection frameworks are worth looking into?
There are now many dependency injection frameworks to choose from. You used to often be forced to use a given dependency injection framework due to a library you were using. However the Common Service Locator library has enabled library code to be independent of injection frameworks.
The time it takes to learn all of them well enough to decide which to use is unreasonable. I don’t believe that we have yet reached a stage that we can talk about the best dependency injection framework. So what questions should I be asking about the project and myself to help decide on the best dependency injection framework to use in a given case?
It would also be useful to know why you choose the dependency injection framework you are currently using and if you are still happy with that choose.
Is there yet a useful vocabulary to use when comparing the styles of dependency injection frameworks?
Does the Service Locator library work in real life, or are you skill forced to use lots of different dependency injection frameworks in the same project?
How easy is to refractor you code with each Dependency Injection Framework, e.g do tools like ReSharper work well with a given framework?