Opennetcf IoC 调用我的类的构造函数两次

发布于 2024-11-27 23:33:57 字数 306 浏览 1 评论 0原文

我有一个类(名为 A),它通过 Opennetcf 的 IoC 依赖注入使用另一个类(名为 B)作为其构造函数的参数之一。

问题是当我的应用程序启动时,类 B 的构造函数被调用两次。

A 类的构造函数:

[InjectionConstructor]
public MyService([CreateNew]ClassB classb)
{
    _classb = classb;
}

我还通过 RootWorkItem 集合中的“Load”方法加载 B 类。

任何帮助表示赞赏

I have a class (named A) which uses another class (named B) as one of it's constructor's arguments by Opennetcf's IoC Dependency Injection.

the problem is when my application starts , class B's constructor is called twice.

Class A's constructor :

[InjectionConstructor]
public MyService([CreateNew]ClassB classb)
{
    _classb = classb;
}

I also load Class B by the "Load" method in the RootWorkItem collection.

any helps appreciated

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

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

发布评论

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

评论(1

提笔落墨 2024-12-04 23:33:57

我不知道这个 IoC 框架,但你告诉它框架必须注入一个对象,并且你还声明需要创建 ClassB 类。那么也许这会导致 b 类构造函数被调用两次?一次使用注入器属性,一次使用 createNew 属性

I dont know this IoC Framework but your'e telling it that a object must be injected by the framework and you also state that the ClassB class needs to be created. So maybe that cause class b constructor to be called twice ? Once with the injector attribite and once with the createNew Attribute

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