从一组引用(包含/导入)XSD 模式生成增量类
让我们假设,我有 3 个 XSD 架构:
- BaseSchema.xsd:包含可重用类型,例如位置、颜色、地址、国家/地区列表
- SchemaA.xsd:包括基本架构并且特定于域 A
- SchemaB.xsd:包括基本架构并且是特定于域 B
我想生成它们相应的 C# 类。 我可以运行
- “XSD.exe /c SchemaA.xsd BaseSchema.xsd”+“XSD.exe /c SchemaB.xsd BaseSchema.xsd”生成 2 个包含 BaseSchema 2x 中的类的 C# 文件。不好。
- “XSD.exe /c SchemaA.xsd SchemaB.xsd BaseSchema.xsd”只会为 BaseSchema.xsd 中的类型生成一个 C# 类。这非常好,但并不总是可行。例如,如果我必须使用已经包含生成的 BaseSchema 和 Schema B 类的第三方程序集。
有没有办法增量生成 C# 类?例如,通过在命令行中以某种方式包含程序集来指示生成器重用已生成的 C# 类,而不是再次创建它们?
Let us assume, I have 3 XSD schemas:
- BaseSchema.xsd: contains reusable types e.g., position, colour, address, countrylist
- SchemaA.xsd: includes the base schema and is specific to domain A
- SchemaB.xsd: includes the base schema and is specific to domain B
I would like to generate their corresponding C# classes.
I can run
- "XSD.exe /c SchemaA.xsd BaseSchema.xsd" + "XSD.exe /c SchemaB.xsd BaseSchema.xsd" resulting 2 C# files that containing the classes from BaseSchema 2x. Not good.
- "XSD.exe /c SchemaA.xsd SchemaB.xsd BaseSchema.xsd" which results only one C# class for the types in BaseSchema.xsd. This is very nice, but not always possible. For example, if I have to use a third party assembly already containing the generated class of BaseSchema and Schema B.
Is there a way to incrementally generate C# classes? E.g., by including assemblies somehow in the command line to instruct the generator reusing the already generated C# classes instead creating them again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您想要投入的时间和精力,我会
a)使用“XSD.exe /c SchemaA.xsd SchemaB.xsd BaseSchema.xsd”,从文件中删除生成的 BaseSchema 类并链接到第三方库反而。
b) 使用 Xsd2Code。它不能立即执行您想要的操作,但可以根据您的需要轻松修改。
我不认为 xsd.exe 提供了另一个合适的解决方案。
Depending on the time and effort you want to put into this, I would
a) use "XSD.exe /c SchemaA.xsd SchemaB.xsd BaseSchema.xsd", delete the generated BaseSchema classes from the file and link to the third party lib instead.
b) use Xsd2Code. It doesn't do what you want out of the box but can be easily modified to your needs.
I don't think xsd.exe provides another suitable solution.