我使用 LiquidXML。我有一个 XSD 文件,这个 XSD 文件通过 DataBinder 工具创建了一个 Visual Basic .Net 项目。现在我创建类并通过 xxx.ToXML 导出它们。创建的 Xml 字符串到目前为止看起来不错。但我得到了一些这样的节点:
<pair>
<patient xs:type="Patient">
<id memberShipID="1"/>
<name>xxx </name>
</patient>
如何以这种方式创建导出,即患者节点不包含 xs:type="Patient" NodeType?
提前很多