当前位置:  开发笔记 > 编程语言 > 正文

使用linq读取属性值

如何解决《使用linq读取属性值》经验,为你挑选了1个好方法。

我有一个xml文件,如下所示.我要做的是创建一个查询,只选择具有属性"Channel"和值"Automotive"的项目.


      Industries
      Automotive
      Cars
      Article
      News
      637f0dd7-57a0-4001-8272-f0fba60feba1

这是我的代码

 var feeds = (from item in doc.Descendants("item")
    where item.Element("category").Value == "Channel"  
    select new { }).ToList(); 

我尝试使用item.attribute方法,但我无法获取Item中的值,只有属性Value"type"

有人可以帮我解决这个问题吗?

干杯,克里斯



1> Jon Skeet..:

我怀疑你想要:

var feeds = (from item in doc.Descendants("item")
             from category in item.Elements("category")
             where category.Value=="Automotive" && 
                   category.Attribute("type").Value == "Channel"
             select item).ToList();

推荐阅读
拾味湖
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有