Linq to XML 选择不同的值

发布于 2024-12-18 01:45:45 字数 581 浏览 0 评论 0原文

我正在使用 sharePoint Lists webservice,为了在搜索页面中加载下拉列表,我需要从 XML 中提取所有“ows_Country”名称,以 XMLNode 的格式返回:

<rs:data ItemCount="1" xmlns:rs="urn:schemas-microsoft-com:rowset">
   <z:row ows_Title="Nike"    ows_ID="1" ows_Country="Spain"  xmlns:z="#RowsetSchema" /> 
   <z:row ows_Title="Addidas" ows_ID="4" ows_Country="Brazil" xmlns:z="#RowsetSchema" />
   <z:row ows_Title="Puma"    ows_ID="5" ows_Country="Spain"  xmlns:z="#RowsetSchema" />
</rs:data>

我需要使用 LINQ 来获取不同的“ows_Country”来自 XMLNode 的亲切帮助可能是我第一次使用 LINQ 和 XML。

I am working with sharePoint Lists webservice, in order to load a dropdown in search page I need to extract all the "ows_Country" name from XML, returend in XMLNode in the Format of :

<rs:data ItemCount="1" xmlns:rs="urn:schemas-microsoft-com:rowset">
   <z:row ows_Title="Nike"    ows_ID="1" ows_Country="Spain"  xmlns:z="#RowsetSchema" /> 
   <z:row ows_Title="Addidas" ows_ID="4" ows_Country="Brazil" xmlns:z="#RowsetSchema" />
   <z:row ows_Title="Puma"    ows_ID="5" ows_Country="Spain"  xmlns:z="#RowsetSchema" />
</rs:data>

I need to use LINQ to get the distinct "ows_Country" from the XMLNode, Kindly help is probably my first experience with LINQ as well as XML.

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

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

发布评论

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

评论(1

你的往事 2024-12-25 01:45:45
XNamespace rs = "urn:schemas-microsoft-com:rowset";
XNamespace z = "#RowsetSchema";

XDocument doc = XDocument.Load(...);

var result = doc.Element(rs + "data")
                .Elements(z + "row")
                .Select(e => (string)e.Attribute("ows_Country"))
                .Distinct()
                .ToList();
XNamespace rs = "urn:schemas-microsoft-com:rowset";
XNamespace z = "#RowsetSchema";

XDocument doc = XDocument.Load(...);

var result = doc.Element(rs + "data")
                .Elements(z + "row")
                .Select(e => (string)e.Attribute("ows_Country"))
                .Distinct()
                .ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文