Ninject:当 AoP 代理类型时可以使用注入构造函数吗?
我正在使用 Ninject 2 做一个项目,有一个问题困扰着我:
如果你要拦截你的类型上的方法,你需要将它包装到代理中(具体来说是城堡动态代理)。除非所述类型具有无参数构造函数,否则代理创建将失败。如果有,则当从内核解析类型实例时将使用此构造函数。
不幸的是,这意味着我的带参数的注入构造函数被忽略,我必须诉诸属性注入。我不太愿意将我的域类型与属性上的 [Inject] 属性结合起来。
有没有办法使用 Ninject 将注入构造函数与 AoP 代理一起使用?
I'm doing a project ground up using Ninject 2 and one question bugs me:
If you are to intercept methods on your type, you need to wrap it into proxy (castle dynamic proxy to be specific). Unless said type has a parameterless constructor, proxy creation fails. If it has, this constructor is being used when type instance is being resolved from the kernel.
Unfortunately, this means that my injection constructor with parameters is being neglected and I have to resort to property injection. I have some reluctance to couple my domain types with [Inject] attribute on properties.
Is there any way to use injection constructor with proxies for AoP using Ninject?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://groups.google.com/group/ninject/browse_thread/thread/ 27ecdf1aafc2ec07
See http://groups.google.com/group/ninject/browse_thread/thread/27ecdf1aafc2ec07