私は大学のプロジェクトのフィニッシュラインにいます、そして私はちょっと質問を終えるのに行き詰まっています。動作するクエリは次のようになります。
var Report = from query in Document.Descendants("order")
group query by query.Element("seller").Value
into qGroup
select new Orders
{
Seller = qGroup.Key,
Quantity = qGroup.Sum(p => int.Parse(p.Element("quantity").Value)).ToString()
};
与えられた「数量」の降順で結果を並べ替える方法を教えていただければ幸いです。
ありがとう!