从一组引用(包含/导入)XSD 模式生成增量类

发布于 2024-12-27 20:32:29 字数 597 浏览 1 评论 0原文

让我们假设,我有 3 个 XSD 架构:

  1. BaseSchema.xsd:包含可重用类型,例如位置、颜色、地址、国家/地区列表
  2. SchemaA.xsd:包括基本架构并且特定于域 A
  3. SchemaB.xsd:包括基本架构并且是特定于域 B

我想生成它们相应的 C# 类。 我可以运行

  1. “XSD.exe /c SchemaA.xsd BaseSchema.xsd”+“XSD.exe /c SchemaB.xsd BaseSchema.xsd”生成 2 个包含 BaseSchema 2x 中的类的 C# 文件。不好。
  2. “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:

  1. BaseSchema.xsd: contains reusable types e.g., position, colour, address, countrylist
  2. SchemaA.xsd: includes the base schema and is specific to domain A
  3. SchemaB.xsd: includes the base schema and is specific to domain B

I would like to generate their corresponding C# classes.
I can run

  1. "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.
  2. "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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淑女气质 2025-01-03 20:32:30

根据您想要投入的时间和精力,我会

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文