使用 Ninject 的 BindFilter 方法从属性注入构造函数参数时避免使用魔术字符串吗?
我的 Ninject 模块中有以下代码:
this.BindFilter<PermitFilter>(FilterScope.Controller, 0)
.WhenControllerHas<PermitAttribute>()
.WithConstructorArgumentFromControllerAttribute<PermitAttribute>(
"permissions",
attribute => attribute.Permissions);
Ninject 是否提供使用字符串作为构造函数参数名称的替代方法?例如,我宁愿在构造函数上放置一个 Permissions 属性,并在绑定语句中引用它(与 Ninject 的常规绑定机制一样)。这样的事情可能吗(或者正在为下一个版本做准备)?
I have the following code in my Ninject module:
this.BindFilter<PermitFilter>(FilterScope.Controller, 0)
.WhenControllerHas<PermitAttribute>()
.WithConstructorArgumentFromControllerAttribute<PermitAttribute>(
"permissions",
attribute => attribute.Permissions);
Does Ninject provide any alternatives to using a string for the name of the constructor argument? For example, I would rather put a Permissions
attribute on the constructor and refer to it in the binding statement (as with Ninject's regular binding mechanism). Is anything like this possible (or in the works for the next version)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在下一个版本中,您可以像这样指定它:
With the next release you can specify it about like this: