无法选择带有LINQ的XElements

本文关键字:LINQ XElements 选择 | 更新日期: 2023-09-27 18:24:10

我试图使用LINQ选择节点,但我不明白为什么这个简单的查询不起作用。

我的xml是这样的:

<config>
  <func_list current_app="GSCC" flag="0">
    <func id="GSCC">
      <BLOCKS>
        <BLOCK id="1" type="ACTIONS">
          <ITEMS>
            <ITEM id="1" type="UINT32" size="1" value="1" />
            <ITEM id="2" type="UINT32" size="1" value="5" />
            <ITEM id="3" type="UINT32" size="1" value="0" />
          </ITEMS>
        </BLOCK>
      </BLOCKS>
    </func>
  </func_list>
</config>

现在,我有一个XElement(_funcNode),它指向"func"节点:

IEnumerable<XElement> xBlocks = from el in _funcNode.Descendants("BLOCK")
                                where el.Attribute("type").Value == "ACTIONS"
                                select el;
if (!xBlocks.Any()) return false;

此外,xBlocks.Any()还会引发System.NullReferenceException异常。知道吗?

无法选择带有LINQ的XElements

我解决了将查询更改为:的问题

IEnumerable<XElement> xBlocks = from el in _funcNode.Descendants("BLOCK")
                                where (string)el.Attribute("type") == "ACTIONS"
                                select el;

谨致问候。

您的主要问题是您的查询没有添加到xml中。

IEnumerable<XElement> xBlocks = from el in _funcNode.Descendants("BLOCK")

你想要使用的是

_funcNode.Descendants().Elements("BLOCK")

试着做这个

var doc = _funcNode.Descendants("BLOCK") 

看看医生长什么样。