将 XML 导入数据集或使用 XPath 读取 XML?
我想知道最好的做法是什么。 我正在将一些数据(表)从数据库导出到 XML 文件,以便我可以从中读取数据。 要导出,我使用 DataTable.WriteXml (c#) 现在读书,什么最好?将它们导入数据集并使用 DataTable.Select 获取我想要的行或创建 XPathDocument 并使用 XPath 获取数据?哪个表现最好?我还在学习xpath。
I'd like to know what is the best practice.
I'm exporting some data (tables) from my database to XML files so I can read my data from them.
To export, I'm using DataTable.WriteXml (c#)
Now to read, what is best? to import them into a dataset and use DataTable.Select to get the row I want or create an XPathDocument and use XPath to get the data? which performs best? I'm still learning xpath.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 DataTable.ReadXml(fileName) 加载导出的 XML?如果您使用
DataTable.WriteXml(file, XmlWriteMode.XmlSchema)
导出表数据,则可以使用 ReadXml(文件)。来自 MSDN 中的示例:
如果是这种情况,我不知道您在哪里需要 XPath。如果我误解了您的问题,请告诉我,我会相应更新。
我希望这有帮助。
Why not load the exported XML in using
DataTable.ReadXml(fileName)
? If you exported your table data usingDataTable.WriteXml(file, XmlWriteMode.XmlSchema)
, then you can import it in to a newDataTable
using ReadXml(file).From an example in MSDN:
If that's the case, I don't see where you'd need XPath. If I'm misunderstanding your question, please let me know and I'll update accordingly.
I hope this helps.