X 组文档.后代

发布于 2024-08-12 11:58:24 字数 158 浏览 5 评论 0原文

如何对 xml 元素值进行分组

XDocument.Descandants("Customer").GroupBy(c=>c.Element("ServiceId"));

这不起作用。

有什么办法可以将其分组吗?

How to group xml element values

XDocument.Descandants("Customer").GroupBy(c=>c.Element("ServiceId"));

This is not working.

Is there any way to group this?

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

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

发布评论

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

评论(1

葬花如无物 2024-08-19 11:58:24

假设 ServiceId 是 Xml 中 Customer 的子元素,您可以按 ServiceId 的值对客户进行分组:

XDocument.Descandants("Customer")
     .GroupBy(c=>c.Element("ServiceId").Value);

如果 ServiceId 是 Customer 元素的属性,请尝试以下操作:

XDocument.Descandants("Customer")
     .GroupBy(c=>c.Attribute("ServiceId").Value);

Assuming that ServiceId is a child element of Customer at your Xml, you can group your customers by ServiceId's value by :

XDocument.Descandants("Customer")
     .GroupBy(c=>c.Element("ServiceId").Value);

If ServiceId is an attribute of Customer element, try this :

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