The Unity Application Block (i.e. Unity) is a lightweight, extensible dependency injection container for .NET with support for interception.
I have a MVC 3 web application, where I am using the Entity Framework for the data access. Furthermore, I have …
asp.net-mvc-3 entity-framework unity-container ioc-containerI seem to have hit a wall here and would appreciate some help from anyone who is able to on …
c# .net caching unity-container enterprise-libraryIn a follow up to Krzysztof’s statement that Windsor does a lot more than other IoC’s, I wanted …
dependency-injection castle-windsor structuremap unity-container ioc-containerIt could seem a stupid question because in my code everything is working, but I've registered a singleton this way …
c# dependency-injection inversion-of-control unity-containerI'm using Microsoft Unity. I have an interface ICustomerService and its implementation CustomerService. I can register them for the Unity …
c# asp.net unity-container ioc-containerI meet one problem that i can't solve now. I have the following: UnityHelper.DefaultContainer.RegisterInstance(typeof(IMyInterface), "test", instance); …
c# unity-container ioc-container instance registeringUltimately this has to do with setting up log4Net but generically the problem is not logging specific. Generically what …
c# dependency-injection unity-container log4net castle-windsorI have the following classes: public interface IServiceA { string MethodA1(); } public interface IServiceB { string MethodB1(); } public class ServiceA : IServiceA { public …
c# inversion-of-control unity-container ioc-container property-injectionI am getting the following error when trying to Initialise the Module using Unity and Prism. The DLL is found …
wpf unity-container prism modularityI've literally just started using the Unity Application Blocks Dependency Injection library from Microsoft, and I've come unstuck. This is …
c# dependency-injection inversion-of-control unity-container repository-pattern