The Unity Application Block (i.e. Unity) is a lightweight, extensible dependency injection container for .NET with support for interception.
I am dipping my toe into using a IoC framework and I have choosen to use Unity. One of the …
c# unity-container ioc-containerI've been working with Microsoft's Unity IOC container. There are a bunch of overloads for the RegisterType() method all looking …
c# unity-containerI am a little out-of-date in WPF right now and would be interested to hear peoples opinions on the latest …
c# .net unity-container prism mvvm-lightCan Unity automatically resolve IEnumerable<T>? Let's say I have a class with this constructor: public CoalescingParserSelector(IEnumerable&…
c# dependency-injection unity-container ienumerablehow do I register two different interfaces in Unity with the same instance... Currently I am using _container.RegisterType<…
unity-containerI am trying to add the Unity package to my solution, but I keep receiving the listed message: Attempting to …
c# nuget unity-container enterprise-libraryI'm using Unity for Dependencies Injection and using Identiy Provider to manage the user login, register, email confirmation, etc. When …
c# unity-container asp.net-identityThe recently announced managed extensibility framework (MEF) of .NET 4.0 - is it a dependency injection framework? Will Microsoft Unity from …
.net unity-container mefGiven a class with several constructors - how can I tell Resolve which constructor to use? Consider the following example …
.net unity-container ioc-container resolveI'm using Unity and try to follow to SOLID-principles as far as possible. Therefore all implementations only have dependencies to …
c# inversion-of-control unity-container factory-pattern