我已经看到了许多使用ASP.NET MVC配置Ninject的方法,但是随着MVC框架的每个发行版的实现似乎都略有变化。我正在尝试将RavenDB会话注入到我的存储库中。这是我几乎可以正常使用的内容。
public class MvcApplication : NinjectHttpApplication
{
...
protected override void OnApplicationStarted()
{
base.OnApplicationStarted();
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
}
protected override IKernel CreateKernel()
{
return new StandardKernel(new MyNinjectModule());
}
public static IDocumentSession CurrentSession
{
get { return (IDocumentSession)HttpContext.Current.Items[RavenSessionKey]; }
}
...
}
public class MyNinjectModule : NinjectModule
{
public override void Load()
{
Bind<IUserRepository>().To<UserRepository>();
Bind<IDocumentSession>().ToConstant(MvcApplication.CurrentSession);
}
}
当它尝试解析IDocumentSession时,出现以下错误。
Error activating IDocumentSession using binding from IDocumentSession to constant value
Provider returned null.
Activation path:
3) Injection of dependency IDocumentSession into parameter documentSession of constructor of type UserRepository
关于如何解决IDocumentSession的任何想法?
最佳答案
在应用程序启动时评估ToConstant(MvcApplication.CurrentSession)
。您想要的是延迟评估ToMethod(ctx => MvcApplication.CurrentSession)