FluentValidation 将参数传递给 WithMessage
我在验证器中有以下代码:
RuleFor(mb => mb.Amount).
Must((mb, amount) =>
{
var betLimit = _battlesService.GetBetLimit(mb.BattleId);
mb.Amount <= betLimit;
}).
WithMessage("Bet should be less than {0}", "bet limit value should be placed here");
有没有办法将betLimit 值传递给WithMessage 方法?我看到的唯一解决方案是将betLimit 值设置为ViewModel 的某些属性,然后在WithMessage 重载中使用funcs 访问它。但它很丑。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于
Amount
不用于获取betLimit
,因此您不能在验证器启动时将下注限制拉入字段中,并在任何您想要的地方使用它吗?类似于:更新:
我现在看到您从视图模型中添加了参数。根据 FluentValidation 文档中的第三个示例,看起来您应该能够像这样访问它 此处:
Since
Amount
isn't used to get thebetLimit
, can't you pull the bet limit into a field when your validator fires up, and use it wherever you want? Something like:UPDATE:
I see now that you added the param from the view model. Looks like you should be able to get to it like this, based on the third example in the FluentValidation docs here: