1

我正在尝试构建一个 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();
}
4

2 回答 2

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();
于 2012-03-19T20:56:41.670 回答
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 的所有东西

You can filter the heck out of XML with XPath and it will let you search for descendants that match a pattern - its what its geared for.

So if you replace the string above with a string.format then you'd be away and running...

于 2012-03-19T21:42:38.993 回答