无法选择相关的嵌套节点:LINQ

本文关键字:嵌套 节点 LINQ 选择 | 更新日期: 2023-09-27 18:32:16

我的示例XML是这样的:

<?xml version="1.0" encoding="utf-8"?>
<Root>
  <RoleSecurity Name="A" Workflowstatus ="B">
    <Accountgroup Name = "Group1">
      <Attribute ID="12345" Name="Sample1"/>
      <Attribute ID="12445" Name="Sample2"/>
    </Accountgroup>
    <Accountgroup Name = "Group2">
      <Attribute ID="12345" Name="Sample1"/>
      <Attribute ID="12445" Name="Sample2"/>
    </Accountgroup>
  </RoleSecurity>
</Root>

我正在尝试枚举和提取与特定角色名称、工作流状态和帐户组对应的所有 ID。

我的 LINQ 查询正在根据角色名称选择节点。但我无法继续下去。请帮忙!

这是我到目前为止的 LINQ 代码。

XElement xcd = XElement.Load(strFileName);
IEnumerable<XElement> enumCust = from cust in xcd.Elements("RoleSecurity")
           where (string)cust.Attribute("Name") == strRole
           select cust;

无法选择相关的嵌套节点:LINQ

试试这个:

string roleName = "A";
string workflowStatus = "B";
string accountGroup = "Group1";
string xml = @"<?xml version=""1.0"" encoding=""utf-8""?>
    <Root>
        <RoleSecurity Name=""A"" Workflowstatus =""B"">
        <Accountgroup Name = ""Group1"">
            <Attribute ID=""12345"" Name=""Sample1""/>
            <Attribute ID=""12445"" Name=""Sample2""/>
        </Accountgroup>
        <Accountgroup Name = ""Group2"">
            <Attribute ID=""12345"" Name=""Sample1""/>
            <Attribute ID=""12445"" Name=""Sample2""/>
        </Accountgroup>
        </RoleSecurity>
    </Root>";
XElement element = XElement.Parse(xml);
var ids = element.Elements("RoleSecurity")
    .Where(
        e =>
            (string) e.Attribute("Name") == roleName &&
            (string) e.Attribute("Workflowstatus") == workflowStatus)
    .Elements("Accountgroup").Where(e => (string) e.Attribute("Name") == accountGroup)
    .Elements("Attribute")
    .Select(e => new {ID = (string) e.Attribute("ID"), Name = (string) e.Attribute("Name")});

尝试使用这种方法,似乎与您的方法不同(在某些方面它确实发生了变化),但在我看来,这是流畅地使用 LINQ 查询来解析 XML 文件的好方法,它遵循 XML 节点序列并且易于理解:

  XElement element = XElement.Load(strFileName);
  var linqList = element.Elements("RoleSecurity")
                              .Where(entry => entry.Attribute("Name").Value == "A" && 
                               entry.Attribute("Workflowstatus").Value == "B")
                                  .Descendants("Accountgroup")
                                  .Where(x => x.Attribute("Name").Value == "Group1")
                                     .Descendants("Attribute")
                                     .SelectMany(id => id.Attribute("ID").Value);
XElement xcd = XElement.Load(strFileName);
IEnumerable<XElement> enumCust = from cust in xcd.Root.Elements("RoleSecurity")
           where cust.Attribute("Name").Value == strRole
           select cust;

这现在应该可以工作您缺少在根节点
下枚举所需的.Root.Value检索指定属性的字符串值

请参考这篇文章:- http://www.dotnetcurry.com/ShowArticle.aspx?ID=564

foreach (XElement xcd xelement.Descendants("Id"))
    {
        Console.WriteLine((string)xcd);
    }