根据 ConstructorArgument 从 Ninject 获取不同的对象
我有以下代码:
kernel.Get<IFoo>(new ConstructorArgument("rule", myRule))
我希望根据 myRule 中的值获得不同的对象。我该怎么做? 像这样的伪代码
Bind<IFoo>().To<Foo1>().When(x=>x.Parameters[0].Value.Type=="type1")
Bind<IFoo>().To<Foo2>().When(x=>x.Parameters[0].Value.Type=="type2")
,其中 Type 是 myRule 的成员
I have following code:
kernel.Get<IFoo>(new ConstructorArgument("rule", myRule))
I want that I get different objects depending of the value in myRule. How do I do that?
Something like this psedocode
Bind<IFoo>().To<Foo1>().When(x=>x.Parameters[0].Value.Type=="type1")
Bind<IFoo>().To<Foo2>().When(x=>x.Parameters[0].Value.Type=="type2")
where Type is a member of myRule
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
访问构造函数参数的类型并不容易。您可能希望改为使用命名绑定或元数据和约束。
但提醒只能从配置中访问内核(例如属于配置的工厂)
Accessing the type of constructor arguments is not easily possible. You might want to change to using either Named bindings or metadata and constraints instead.
But remind to access the kernel only from the configuration (e.g. factories belonging to the configuration)