Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to implement Dependency injection in my MVC application. I'm using Unity.Mvc3.dll for IoC. I just wondering how the Unity can't register Types from another assembly. Here's the code:

      protected void Application_Start()
    {
        AreaRegistration.RegisterAllAreas();

        RegisterGlobalFilters(GlobalFilters.Filters);
        RegisterRoutes(RouteTable.Routes);

        var container = new UnityContainer();

        // ok: register type from this assembly
        container.RegisterType<IMessages, Messages>();

        // fail: register type from another assembly (service reference)
        container.RegisterType<IPlayerService, PlayerService>();

        DependencyResolver.SetResolver(new UnityDependencyResolver(container));
    }

 public class UnityDependencyResolver : IDependencyResolver
{
    private readonly IUnityContainer _container;

    public UnityDependencyResolver(IUnityContainer container)
    {
        this._container = container;
    }

    public object GetService(Type serviceType)
    {
        try
        {
            return _container.Resolve(serviceType);
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

    public IEnumerable<object> GetServices(Type serviceType)
    {
         try
        {
            return _container.ResolveAll(serviceType);
        }
         catch (Exception ex)
        {
            throw ex;
        }
    }
}

Usage in the MVC Controller:

    [Dependency]
    public IPlayerService PlayerService { get; set; }

    [Dependency]
    public IMessages Messages { get; set; }


    public ActionResult Index()
    {
        PlayerMessageViewModel vm = new PlayerMessageViewModel();
        vm.Messages = Messages; // success!
        vm.Players = PlayerService.Get(); // fail: null reference exception :PlayerService

        return View(vm);
    }

PlayerService is always null while the Messages is OK.

Here is the PlayerService Class

 public class PlayerService : IPlayerService
{
    private readonly MyDbEntities _dbContext;

    public PlayerService()
    {
         _dbContext = new MyDbEntities();
    }

    public PlayerService(MyDbEntities dbContext)
    {
        _dbContext = dbContext;
    }


    public IQueryable<Player> Get()
    {
        return _dbContext.Players.AsQueryable();
    }

this is the complete Error Message

Resolution of the dependency failed, type = "System.Web.Mvc.IControllerFactory", name = "(none)". Exception occurred while: while resolving. Exception is: InvalidOperationException - The current type, System.Web.Mvc.IControllerFactory, is an interface and cannot be constructed. Are you missing a type mapping?

share|improve this question

3 Answers

up vote 1 down vote accepted

By default unity picks the constructor with the most parameters, so I think it'll be trying to use the second constructor with the dbContext parameter, which it can't resolve. If you mark your default constructor with the attribute [InjectionConstructor] then hopefully that will solve your problem

share|improve this answer
will do, thanks – csharplinc Jun 12 '12 at 8:28
what library InjectionConstructor attribute is included? – csharplinc Jun 12 '12 at 8:32
still no luck, I even removed the overloaded ctor but to no avail – csharplinc Jun 12 '12 at 8:37
I don't think that there's no work around with this one, How come other's implemented it with WCF services types. – csharplinc Jun 12 '12 at 8:37
show 3 more comments

You are hiding all exceptions with catch { return null; } try to remove it and see what exception is thrown while resolving. I think exception is thrown in PlayerService constructor.

EDIT:

From http://mvchosting.asphostcentral.com/post/ASPNET-MVC-3-Hosting-Problem-in-implementing-IControllerActivator-in-ASPNET-MVC-3.aspx

When an MVC application starts for the first time, the dependency resolver is called with the following types in the following order:

  • IControllerFactory
  • IControllerActivator
  • HomeController

If you did not implement your resolver to return null if a type is not registered then you will probably end up seeing an error similar to:

The current type, System.Web.Mvc.IControllerFactory, is an interface and cannot be constructed

share|improve this answer
it should hit the default ctor right? I cant get the debugger go to the breakpoint in ctor. – csharplinc Jun 12 '12 at 6:31
Yep, public PlayerService() – Pavel Krymets Jun 12 '12 at 6:31
I remove the null and replace throw exception and this is what i get the current type, System.Web.Mvc.IControllerFactory, is an interface and cannot be constructed. Are you missing a type mapping? – csharplinc Jun 12 '12 at 6:33
Is there something wrong in the Player Service? I dont think it's in the MyDbEntities which is an Entity Framework edmx – csharplinc Jun 12 '12 at 6:37
please see my Edit. – csharplinc Jun 12 '12 at 6:40
show 4 more comments

You are violating the contract of IDependencyResolver. It should return null for types which can not be resolved. The problem with Unity is that it tries to build all classes that it can find, no matter if they are registered in the container or not.

Hence a class somewhere can not be built.

There is also a Unity.Mvc3 package available in nuget.

share|improve this answer
are you saying there's no work around regarding this one? – csharplinc Jun 12 '12 at 8:26
it's actually originally returns null but I just replace throe exception to see the actual error as suggested by the other poster. – csharplinc Jun 12 '12 at 8:27
1  
Your throw hides the problem that you got from the start since IControllerActivator is invoked before any controller is invoked. Change back to return null and LOG all exceptions (or put a break point in the catch block) – jgauffin Jun 12 '12 at 8:38
1  
Continue to to return null for all ASP.NET/MVC3 classes until the controller is invoked. It's that exception we are interested in. – jgauffin Jun 12 '12 at 8:52
1  
I helped you find the answer, but you accepted another answer? Hence a class somewhere can not be built – jgauffin Jun 12 '12 at 9:03
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.