我对Structuremap完全不熟悉,并且对如何连接具有多个实现的接口感到困惑.
让我们说我有Controller1和Controller2.我有Interface1,它由两个独立的类Class1ForInterface1和Class2ForInterface1实现.在Controller1中我希望注入Class1ForInterFace1,而在Controller2中我想要注入Class2ForInterface1.
如何使用structuremap连接它?看来我只能有一个接口到具体类型的映射?
谢谢!
解决方法
可以使用几个类与structuremap实现相同的接口.
如果为映射命名,则可以稍后使用该名称对其进行检索.
For<MyInterface>().Add<Class1ForMyInterface>().Named("Class1"); For<MyInterface>().Add<Class2ForMyInterface>().Named("Class2");
如果您想要Class1ForMyInterface,那么您可以调用
container.GetInstance<MyInterface>("Class1");
还有几种方法可以在容器中映射所有这些
For<IController>().Add<Controller1>().Ctor<MyInterface>().Is(i => i.GetInstance<MyInterface>("Class1"));
或者,如果保留注册类型时返回的smartinsatance,则可以在映射中使用它.
var class1 = For<MyInterface>().Add<Class1ForMyInterface>().Named("Class1"); For<IController>().Add<Controller1>().Ctor<MyInterface>().Is(class1);