将 XML 导入数据集或使用 XPath 读取 XML?

发布于 2024-11-28 06:18:04 字数 189 浏览 1 评论 0原文

我想知道最好的做法是什么。 我正在将一些数据(表)从数据库导出到 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 技术交流群。

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

发布评论

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

评论(1

抹茶夏天i‖ 2024-12-05 06:18:04

为什么不使用 DataTable.ReadXml(fileName) 加载导出的 XML?如果您使用 DataTable.WriteXml(file, XmlWriteMode.XmlSchema) 导出表数据,则可以使用 ReadXml(文件)

来自 MSDN 中的示例:

myOldTable.WriteXml(fileName, XmlWriteMode.WriteSchema);

DataTable newTable = new DataTable();
newTable.ReadXml(fileName);

如果是这种情况,我不知道您在哪里需要 XPath。如果我误解了您的问题,请告诉我,我会相应更新。

我希望这有帮助。

Why not load the exported XML in using DataTable.ReadXml(fileName)? If you exported your table data using DataTable.WriteXml(file, XmlWriteMode.XmlSchema), then you can import it in to a new DataTable using ReadXml(file).

From an example in MSDN:

myOldTable.WriteXml(fileName, XmlWriteMode.WriteSchema);

DataTable newTable = new DataTable();
newTable.ReadXml(fileName);

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.

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