结构图 - 多个接口实现

时间:2011-06-23 19:03:23

标签: .net asp.net-mvc-3 structuremap

我对Structuremap完全不熟悉,并且对如何连接具有多个实现的接口感到困惑。

假设我有Controller1Controller2。我有Interface1由两个单独的类Class1ForInterface1Class2ForInterface1实现。在Controller1我希望Class1ForInterFace1注入Controller2 Class2ForInterface1我希望注入{{1}}。

如何将其与结构图连接?看来我只能有一个接口到具体类型的映射?

谢谢!

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);