Quantcast
Channel: Using LINQ to XML how can I group element on the basis of its value? - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by Martin Honnen for Using LINQ to XML how can I group element on the basis of its value?

$
0
0

Try along the following lines:

var groups = from record in xmldoc.Descendants("record")             group record by (string)record.Element("collection") into g             select new {               key = g.Key,               count = g.Count()             }foreach (var group in groups){  Response.Write("Collection "+ group.key +" has "+ group.count +" member(s).");}

Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>