在尝试配置ServiceStack.net以使用Ninject作为其IOC时,我收到的错误是指未定义的各种绑定。主要用于ICache客户端。
需要创建哪些特定绑定才能正确使用Ninject?
目前已指定:
Bind<ISessionFactory>().To<SessionFactory>();//Is this correct/needed?
注意
我根据ServiceStack文档创建了一个IContainerAdapter来实现Ninject的使用。 (见ServiceStack IOC Docs)
注2 我的apphost配置方法如下所示:
public override void Configure(Funq.Container container)
{
IKernel kernel = new StandardKernel(new BindingModule());
container.Adapter = new NinjectContainerAdapter(kernel);
}
注3
我已经注册了ICacheClient,如下所示: 绑定()为了();
我现在收到指向IRequest的错误
Error activating IRequestLogger\nNo matching bindings are available, and the type is not self-bindable
容器适配器
public class NinjectContainerAdapter : IContainerAdapter
{
private readonly IKernel _kernel;
public NinjectContainerAdapter(IKernel kernel)
{
this._kernel = kernel;
}
public T TryResolve<T>()
{
return this._kernel.Get<T>();
}
public T Resolve<T>()
{
return this._kernel.Get<T>();
}
}
答案 0 :(得分:9)
您是否为您的Container适配器注入了:
container.Adapter = new NinjectIocAdapter(kernel);
如果是这样,如果您还没有这样做,请尝试将您的AppHost类内部。应该只有1个AppHost实例,而有些IOC喜欢创建自己的实例,从第一个实例中删除所有配置。
你得到的行为听起来像Ninject,抱怨未解决的依赖关系。通过在容器适配器中使用kernal.TryGet<T>
,确保让Ninject返回null与未解析的依赖关系,例如:
public T TryResolve<T>()
{
return this._kernel.TryGet<T>();
}
答案 1 :(得分:1)
您需要编写自己的IContainerAdapter,然后在AppHost中设置Container.Adapter