Opennetcf IoC 调用我的类的构造函数两次
我有一个类(名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道这个 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