是否有 ValidationWarningResult 这样的东西?
我有一个完整的验证规则列表,这些规则要么是警告(可以继续),要么是致命(无法继续)。
致命的错误很简单,但警告却让我很难找到一种简洁的方法来设置它们。我可以很容易地处理这些警告,但它很混乱。
有没有一种声明性的方式来处理“警告”?
I have a whole list of validation rules that are either warnings (can continue) or fatal (cannot continue).
The fatals are easy, but the warnings are stumping me as far as a succinct way to set them up. I can handle the warnings easily enough, but it is messy.
Is there a declarative way to handle 'warnings'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有。我最终向我的实体添加了一个标志“ValidateAll”,并使用它来强制警告根据状态变为错误。
No, there isn't. I ended up adding a flag 'ValidateAll' to my entities and use that to force the warnings to become errors depending on state.