我有一个像这样的xml:
<LiftFactors>
<Products>
<Product>
<ProductId>Limella</ProductId>
<Tactics>
<Tactic>
<Typ>PriceRed</Typ>
<TPRFrom>0</TPRFrom>
<TprThru>10</TprThru>
<Lift>14</Lift>
<VF>2012-01-09</VF>
<VT>2012-01-11</VT>
</Tactic>
<Tactic>
<Typ>PriceRed</Typ>
<TPRFrom>10 </TPRFrom>
<TprThru>20</TprThru>
<Lift>30</Lift>
<VF>2012-01-07</VF>
<VT>2012-20-08</VT>
</Tactic>
<Tactic>
<Typ>Display</Typ>
<Lift>14</Lift>
<VF>2012-01-04</VF>
<VT>2012-01-06</VT>
</Tactic>
</Tactics>
</Product>
<Product>
<ProductId>Empower Cola</ProductId>
<Tactics>
<Tactic>
<Typ>Display</Typ>
<Lift>20</Lift>
<VF>2012-01-01</VF>
<VT>2012-01-08</VT>
</Tactic>
</Tactics>
</Product>
</Products>
</LiftFactors>
使用以下linq语句,我得到按ProductId分组的Tactic数据,并按ValidFrom日期排序:
var xml = XElement.Parse(theXML);
var d = (from e in xml.Descendants(@"Product")
group e by e.Element("ProductId").Value into Items
select Items).ToDictionary
(x => x.Key, x => ((XElement)x.First()).Descendants("Tactic").ToList().OrderByDescending (y=> ((DateTime)y.Element("VF"))));
输出:
Limella -> Tactic PriceRed 1
-> Tactic PriceRed 2
-> Tactic Display
Empower Cola -> Tactic Display
现在假设'Product'节点是可选的,我可以在Product节点之外有另外的Tactic节点:
<LiftFactors>
<Products>
<Product>
<ProductId>Limella</ProductId>
<Tactics>
<Tactic>
<Typ>PriceRed</Typ>
<TPRFrom>0</TPRFrom>
<TprThru>10</TprThru>
<Lift>14</Lift>
<VF>2012-01-09</VF>
<VT>2012-01-11</VT>
</Tactic>
</Tactics>
</Product>
</Products>
<Tactics>
<Tactic>
<Typ>PriceRed</Typ>
<TPRFrom>0</TPRFrom>
<TprThru>10</TprThru>
<Lift>14</Lift>
<VF>2012-01-09</VF>
<VT>2012-01-11</VT>
</Tactic>
</Tactics>
</LiftFactors>
现在我想要的是这个输出:
Limella -> Tactic 1
-> ...
<Null> -> Tactic 2
-> ....
因此,策略也应该出现在没有指定密钥的组中。只有一个linq查询可以实现吗?
答案 0 :(得分:1)
以下内容似乎适用于您的示例XML,这为您提供了一个可以容忍的匿名对象集合,如果 Tactic 位于产品,否则为null:
var xml = XElement.Parse(contents);
var d = xml.Descendants("Tactic").Select(element => element.Parent != null ? new
{
id = element.Parent.Parent.Element("ProductId"),
Tactic = new
{
Typ = element.Descendants("Typ").FirstOrDefault().Value,
TPRFrom = element.Descendants("TPRFrom").FirstOrDefault().Value,
TprThru = element.Descendants("TprThru").FirstOrDefault().Value,
VF = element.Descendants("VF").FirstOrDefault().Value,
VT = element.Descendants("VT").FirstOrDefault().Value
}
} : null);
答案 1 :(得分:1)
试试这个:
var d = xml.Descendants("Tactics")
.GroupBy(e=>e.Parent.Name.LocalName == "Product" ?
e.Parent.Element("ProductId").Value : "")
.ToDictionary(x => x.Key, x => ((XElement)x.First())
.Descendants("Tactic").ToList()
.OrderByDescending (y=>(DateTime)y.Element("VF")));
注意:Tactics
外Product
的组的密钥为empty string
,您可以稍微更改代码(使用If-else)将其更改为null
。