我有一个类,它在构造函数中接受一组接口:
public class Foo<T1, T2> : IFoo<T1, T2>
{
public Foo(IBar[] bars)
{
...
}
}
我的容器注册如下:
container.Register(AllTypes.Pick().FromAssemblyNamed("...")
.WithService.FirstInterface());
container.AddComponent("foo", typeof(IFoo<,>), typeof(Foo<,>));
我有几个IBar的实现,容器可以定义它们,因为调用ServiceLocator.Current.GetAllInstances<IBar>()
可以正常工作。
但是,如果我试图获取一个IFoo的实例,它会抛出一个异常,说它无法满足deoendency ......“这没有注册”。
如果我更改构造函数以获取IBar的单个实例,则可以正常工作。
有什么想法吗?
答案 0 :(得分:23)
添加ArrayResolver:
container.Kernel.Resolver.AddSubResolver(new ArrayResolver(container.Kernel));