我对Structuremap完全不熟悉,并且对如何连接具有多个实现的接口感到困惑。
假设我有Controller1
和Controller2
。我有Interface1
由两个单独的类Class1ForInterface1
和Class2ForInterface1
实现。在Controller1
我希望Class1ForInterFace1
注入Controller2
Class2ForInterface1
我希望注入{{1}}。
如何将其与结构图连接?看来我只能有一个接口到具体类型的映射?
谢谢!
答案 0 :(得分:10)
有几个类可以使用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);