如何让DataTable更好地序列化?
我有以下代码将 DataTable 序列化为 XML。
StringWriter sw = new StringWriter();
myDataTable.WriteXml(sw);
然而,这是有效的,序列化的 XML 看起来像这样:
<NameOfTable>
<NameOfTable>
<ID>1</ID>
<Name>Jack</Name>
</NameOfTable>
<NameOfTable>
<ID>2</ID>
<Name>Frank</Name>
</NameOfTable>
</NameOfTable>
是否有办法将外部
更改为
和内部 < code>
?
I have the following code that serializes a DataTable to XML.
StringWriter sw = new StringWriter();
myDataTable.WriteXml(sw);
And this works, however, the serialized XML looks like this:
<NameOfTable>
<NameOfTable>
<ID>1</ID>
<Name>Jack</Name>
</NameOfTable>
<NameOfTable>
<ID>2</ID>
<Name>Frank</Name>
</NameOfTable>
</NameOfTable>
Is there anyway to change the outer <NameOfTable>
to, say, <Records>
and the inner <NameOfTable>
to <Person>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是你所要求的。但我不认为它能达到你想要的效果。
This does what you asked. But I don't think it does what you want.
在将表写入 XML 之前,您可以更改数据表中的列名称。不是最佳的,但它会做你想要的。
Before you write the table to XML you could change the column names in the data table. Not optimal but it would do what you want.