Linq to XML通过查询子元素来获取父元素属性值

时间:2012-03-19 20:14:34

标签: c# linq linq-to-xml predicatebuilder

我正在尝试构建一个Linq to XML Query但尚未找到真正的解决方案。

这是我的XML

<Nodes>
  <Node Text="Map" Value="Map">
    <Node Text="12YD" Value="12YD">
      <Node Text="PType" Value="PType">
        <Node Text="12" Value="12" />
      </Node>
      <Node Text="SType" Value="SType">
        <Node Text="2" Value="2" />
      </Node>
    </Node>
    <Node Text="12YP" Value="12YP">
      <Node Text="PType" Value="PType">
        <Node Text="12" Value="12" />
      </Node>
      <Node Text="SType" Value="SType">
        <Node Text="1" Value="1" />
      </Node>
    </Node>
  </Node>
</Nodes>

我可用的参数是针对PType节点和SType节点,现在取决于我们获取父节点属性值所需的值。

Example:

Params: {PType:12}, {SType:2} should give me 12YD as a result.  
Params: {PType:12}, {SType:1} should give me 12YP as a result.

即使使用PredicateBuilder,我也尝试了不同的解决方案,但没有成功。任何帮助将不胜感激。

这是我使用LinqPad的最新代码。

void Main()
{
    var xml = XElement.Load (@"C:\map.xml");

    string value = "{PType:12},{SType:1}";
    string[] mapReqValues = value.Split(',');

    var predicate = PredicateBuilder.False<XElement>();
    foreach (string r in mapReqValues)
    {
        var m = Regex.Match(r, @"{([^}]+)}").Groups[1].Value.Split(':');
        predicate = predicate.Or(p => p.Attribute("Value").Value == m[0] && 
            p.Descendants().Attributes("Value").FirstOrDefault().Value == m[1]);

    }

    var result = xml.Descendants().AsQueryable().Where(predicate);
    result.Dump();
}

2 个答案:

答案 0 :(得分:2)

XDocument xDoc = XDocument.Load(new StringReader(xml));    

var Tuples = xDoc.Descendants("Node").Where(n => n.Attribute("Text").Value == "PType")
            .Join(
                xDoc.Descendants("Node").Where(n => n.Attribute("Text").Value == "SType"),
                n1 => n1.Parent,
                n2 => n2.Parent,
                (n1, n2) => new
                {
                    ParentsValue = n1.Parent.Attribute("Text").Value,
                    PValue = n1.Element("Node").Attribute("Text").Value,
                    SValue = n2.Element("Node").Attribute("Text").Value
                }
            );


var result = Tuples.Where(n => n.PValue == "12" && n.SValue == "1")
                   .Select(n => n.ParentsValue)
                   .ToArray();

答案 1 :(得分:2)

在处理XML时,XPath是你的朋友......

对于PType 12,Stype 1

var result = xml.XPathSelectElements(@"//Node[Node[@Value='PType']/Node[@Value='12'] and Node[@Value='SType']/Node[@Value='1']]");

那有点满口......

//Node

树中任何位置的每个节点

[Node[@Value='PType']

具有Node类型的子节点,其属性Value具有值(!)PType

/Node[@Value='12']

具有Node类型的子节点,其Value属性值为12

所有要访问SType 1的内容

您可以使用XPath过滤掉XML,它可以让您搜索与模式匹配的后代 - 它的适应性。

因此,如果用string.format替换上面的字符串,那么你就会离开并运行......