我从Ninject开始,在MVC4场景中使用它,并在"NinjectWebCommon“中配置我的绑定。一切都很好。
现在,我想在一个库中,以某种方式从MVC应用程序中获取内核和配置。
例如:在我的MVC项目中,我有一个类"BaseController“,它有一个属性
[Inject]
public IKernel Ninject { get; set; }
完美的工作,意味着在一个控制器中的每个动作中,从BaseController继承的属性"Ninject“是很好的实例,并且不是空的!
现在我的外部库中有"NinjectProxy“类,具有完全相同的属性,但每次我创建"NinjectProxy”的新实例时,属性“NinjectProxy”都是空的!
public class NinjectProxy
{
[Inject]
public IKernel Ninject { get; set; }
public T Resolve<T>()
{
return Ninject.Get<T>();
}
}
我的完整解决方案如下所示:
MVC app
- Reference on Common.dll and Ninject
- Contains ControllerBase
Common.dll
- This project contains the NinjectProxy class and have a reference on Ninject
- Here I want somehow get the kernel config that I configured in the mvc app to resolve dependecies
Implementation.dll
- References on Common.dll and Ninject
库被加载到"NinjectWebCommon“中,命令如下:
kernel.Load(Assembly.Load("lib"))
如果这很重要的话。
有人知道我做错了什么吗?
发布于 2013-02-20 11:45:20
您正在使用new
手动创建实例,此对象不是由单个对象处理的,并且永远不会获得依赖关系。
将实例注入到某个地方,或者使用factory由Inject创建它
但是Ruben是绝对正确的,你正在遵循一个你无论如何都不应该使用的模式。取而代之的是,在bootstrapper中完全配置Ninject。要么使用与整个项目匹配的约定,要么引用所有必需的程序集并为它们设置绑定。
https://stackoverflow.com/questions/14938398
复制相似问题