0

我正在尝试在我当前的项目中使用 LightInject,但我一直得到一个空值。我在 MVC 5 中有一个 Web 应用程序,并附有一个业务层。我已经在我的 Web 项目中安装了LightInject.MvcLightInject.Web 。我已经在我的业务项目中安装了LightInject.Mvc 。

在业务层,我有一个 compositionRoot.cs 文件:

using LightInject;
using SimpleKB.Business.Commands;

namespace SimpleKB.Business
{
    public class CompositeRoot : ICompositionRoot
    {
        public void Compose(IServiceRegistry serviceRegistry)
        {
            serviceRegistry.Register<IRegisterUserCommand, RegisterUserCommand>();
            serviceRegistry.Register<ICreateCategoryCommand, CreateCategoryCommand>();
            serviceRegistry.Register<IUpdateCategoryCommand, UpdateCategoryCommand>();
        }
    }
}

接下来,在 web 项目中,在 Global.asax.cs 中,我在 app_start 方法中有以下内容:

var serviceContainer = new ServiceContainer();
serviceContainer.RegisterFrom<Business.CompositeRoot>();
serviceContainer.EnableMvc();

最后,我的控制器代码如下所示:

public class AccountController : Controller
    {
        public IRegisterUserCommand RegisterUserCommand { get; set; }

        [HttpGet]
        [AllowAnonymous]
        public ActionResult Login()
        {
            RegisterUserCommand.Execute();
            return View();
        }
    }

当代码尝试使用RegisterUserCommand时,我基本上在控制器中得到了 null 异常。我假设 LightInject 在遇到接口时会自动注入代码。我错过了什么?

4

1 回答 1

0

在查看 LigtInject.Mvc 项目的代码后,我想通了。基本上,我的 global.asax.cs 中的代码应该如下所示:

var serviceContainer = new ServiceContainer();
serviceContainer.RegisterFrom<Business.CompositeRoot>();
serviceContainer.RegisterControllers();
serviceContainer.EnableMvc()
于 2016-10-21T15:20:34.843 回答