如何检查架构与 XSD.exe 生成的类同步?
我正在使用架构(xsd 文件)中的 XSD.exe 生成的类来序列化/反序列化 XML。最近,由于架构发生了变化,我遇到了一些问题,但我错过了重新生成类。
我想知道确保架构和类同步的最佳方法是什么?如何在运行时和编译时检查这一点?
I am using classes generated with XSD.exe from schema(xsd file) for serializing/deserializing XML. Recently I had some issues becasue the schema changed but I missed to regenerate the classes.
I am wondering what is the best way to make sure the schema and classes are in sync? How can I check this in runtime and compiletime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据项目属性的构建事件页面的预构建事件命令行中的 xsd 文件生成类。通过这种方式,类始终与模式同步。
以下是一些有用的链接:
预构建事件/构建后事件命令行对话框
如何:指定生成事件(C#、J#)
Generate classes according xsd file in Pre-build event command line of build events page of project properties. In this way, classes is always sync with schema.
Here are some useful link:
Pre-build Event/Post-build Event Command Line Dialog Box
How to: Specify Build Events (C#, J#)