将元数据添加到 XSD 定义
不太熟悉 XSD,我想知道是否可以执行以下操作:
<xs:group name="SomeGroup">
<xs:sequence>
<xs:element name="Groupingcode" type="OurType" origin="DB" />
<xs:element name="Description" type="StringType" origin="XML" />
解释一下:我有一个 XSD 架构文件。 我需要根据包含数据库数据的XSD(这部分工作正常)生成一个XML文件。 但是,某些元素需要额外的数据才能找到从数据库中获取的正确字段。 这就是 origin 标签的用武之地。它允许我在 XSD 中描述在何处查找数据。 该标签不需要出现在生成的 XML 中,但如果可能的话,将使用相同的 XSD 来验证生成的 XML。 我知道,另一种方法是使用单独的 XML 文件来描述这一点。 但我想知道是否可以在我的 XSD 中执行此操作。
上面的片段将生成以下 XML:
<SomeGroup>
<Groupingcode>None</Groupingcode>
<Description>This item does not belong to any group.</Description>
希望这是有道理的。
Not all that familiar with XSD, I wonder if it is possible to do the following:
<xs:group name="SomeGroup">
<xs:sequence>
<xs:element name="Groupingcode" type="OurType" origin="DB" />
<xs:element name="Description" type="StringType" origin="XML" />
To explain: I have an XSD schema file. I need to generate an XML file according to the XSD (this part works fine) containing database data. However, some elements need additional data to be able to find the proper field to get from the database. That's where the origin tag would come in. It would allow me to describe in the XSD where to look for the data. The tag need not be present in the generated XML, but if possible that same XSD would be used to validate the generated XML.
Another way would be to use a separate XML file to describe this, I know. But I would like to know if it would at all be possible to do this in my XSD.
The above fragment would generate to the following XML:
<SomeGroup>
<Groupingcode>None</Groupingcode>
<Description>This item does not belong to any group.</Description>
Hope this makes sense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
往前走吧。 只需将额外的属性放入您自己的命名空间中,然后创建一个定义它们的架构即可。 Microsoft 对创建数据集时生成的 .XSD 文件执行此操作。
Go right ahead. Just put your extra attributes into a namespace of your own, and create a schema that defines them. Microsoft does this for the .XSD files generated when you create a DataSet.