在 LINQ 查询后将元素添加到 XDocument

发布于 2024-08-23 20:05:16 字数 197 浏览 7 评论 0原文

我的 XDocument 中有以下 XML LINQ 查询。

var totals = (from x in MyDocument.Descendants("TOTALS") select x).FirstOrDefault();

找到总计节点后,我需要向该节点添加一些元素并将该更改推送到 XDocument。

I have the following XML LINQ query from my XDocument.

var totals = (from x in MyDocument.Descendants("TOTALS") select x).FirstOrDefault();

Once I have found my totals node I need to add some elements to that node and push that change to the XDocument.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

ぃ双果 2024-08-30 20:05:16

因此,只需对返回的节点进行更改...除非克隆它,否则它仍然是文档的一部分。

顺便说一句,您的查询表达式没有添加任何内容 - 更简单的代码是:

var totals = MyDocument.Descendants("TOTALS").FirstOrDefault();

So just make the change to the returned node... unless you clone it, it will still be part of the document.

Btw, your query expression isn't adding anything - simpler code would be:

var totals = MyDocument.Descendants("TOTALS").FirstOrDefault();
就像说晚安 2024-08-30 20:05:16

您可以使用AddAfterSelf()根据totals添加新节点。这些更改将自动附加到主 XDocument,因为总计引用文档内的 XElement。

you can use AddAfterSelf() to add new nodes against totals. Those changes will automatically get attached to the main XDocument, since totals is referencing an XElement inside the document.

誰ツ都不明白 2024-08-30 20:05:16
totals.Add(new XElement("NewNode", "New node value"));
totals.Add(new XElement("NewNode", "New node value"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文