帮助进行基本结构图接线

发布于 2024-12-04 21:30:09 字数 820 浏览 1 评论 0原文

var container = new Container(x =>
                                              {
                                                  x.For<IEngine>().Use<V6Engine>();
                                                  x.For<ICar>().Use<HondaCar>();
                                              }
);

ICar car = ObjectFactory.GetInstance<ICar>();

Console.WriteLine(car.Noise());

我收到错误:

StructureMap Exception Code:  202
No Default Instance defined for PluginFamily ClassLibrary1.ICar, ClassLibrary1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

我阅读了快速入门,并且我了解到,如果您连接也在构造函数中使用的特定接口,则不必在每个类构造中显式连接该接口。

因此,在上面,我将 IEngine 连接到 V6Engine,然后将 ICar 连接到 HondaCar(它有一个构造函数,该构造函数具有我已经连接的 IEngine)。

为什么这不起作用?

var container = new Container(x =>
                                              {
                                                  x.For<IEngine>().Use<V6Engine>();
                                                  x.For<ICar>().Use<HondaCar>();
                                              }
);

ICar car = ObjectFactory.GetInstance<ICar>();

Console.WriteLine(car.Noise());

I am getting the error:

StructureMap Exception Code:  202
No Default Instance defined for PluginFamily ClassLibrary1.ICar, ClassLibrary1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

I read the quickstart, and I understood that if you wireup a particular interface that is also used in a constructor, you don't have to explicitly wireup the interface in each classes constructure.

So in the above, I wired up IEngine to V6Engine, and then ICar to HondaCar (that has a constructor that has an IEngine that I have already wired up).

Why does this not work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宛菡 2024-12-11 21:30:09

尝试:

container.GetInstance<ICar>();

希望有帮助。

try :

container.GetInstance<ICar>();

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文