在 C# 中使用 Schematron/XSD 进行 XML 验证
我一直在寻找一种对 XML 文档进行更高级业务规则验证的方法。 到目前为止,Schematron 似乎能够满足我的需要。
我环顾四周,发现的几个库都很旧,似乎不再受支持。 Schematron 仅在 2002 年才“火爆”吗? 是否有任何库可以在 C# 中进行验证 - 或者我该如何做?
或者是否有其他可以进行高级验证并拥有 C# 库且已标准化的工具?
I've been looking around for at a way to make some more advanced business rule validation of XML documents. So far Schematron seems to be able to do, what I need.
I've been looking around, and the few libraries I've found was very old and seemingly not supported any longer. Was Schematron only "hot" in 2002?
Are there any libraries that can do the validation in C# - or how do I do it?
Or are there others that can do the advanced validation and have C# libraries and are standardized?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论如何,这是我的经验......
我曾经有过这样的时刻,我希望模式可以在业务规则验证方面做更多的事情。 然而,根据我的经验,模式是用来定义数据契约(格式、类型等)的......不是来强制执行业务规则。 试图让它超出这个范围会遇到各种各样的问题,这可能就是为什么 Schematron 的受欢迎程度似乎已经消失的原因(可能是我无法备份的糟糕假设)。
为了解决这个问题,通常可以采用两遍方法:
我理解,如果您想要采用一种一体化的方法进行验证,但从长远来看,尝试使用架构会导致更多麻烦。 最后,您将通过隔离代码来更好地控制业务规则检查。
For what it's worth, this has been my experience...
I've had moments where I wish schemas could do more along the lines of business rule validation. However, in my experience a schema is there to define a data contract (format, types, etc)... NOT to enforce business rules. Trying to make it more than that runs into all sorts of problems and may be why Schematron seems to have died down in its popularity (possibly bad assumption that I cannot backup).
To get around this, one can generally do a two pass approach:
I understand if you're wanting to do an all-in-one approach to validation but attempting to use schema for this causes more headaches in the long run. In the end you'll end up having finer control over your business rule checking by isolating to code.