X 组文档.后代
如何对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 ServiceId 是 Xml 中 Customer 的子元素,您可以按 ServiceId 的值对客户进行分组:
如果 ServiceId 是 Customer 元素的属性,请尝试以下操作:
Assuming that ServiceId is a child element of Customer at your Xml, you can group your customers by ServiceId's value by :
If ServiceId is an attribute of Customer element, try this :