I'm trying to find the most popular Tags that are used for a BlogPost.
eg.
public class BlogPost
{
public int Id { get; set; }
public IEnumerable<string> Tags { get; set; }
}
So i tried ..
var tags = (from p in BlogPosts()
group bp by bp.Tags into g
select new {Tag = g.Key, Count = g.Count()})
.OrderByDescending(o => o.Count)
.Take(number);
but this doesn't compile. Error is:
Cannot implicitly convert type 'System.Linq.IQueryable<{Tag: System.IEnumerable<string>, Count: int}>' to 'System.Collections.Generic.Dictionary<string, int>'.
See how it's a list of strings? i was hoping to look through each tag in every blog post .. and count the most popular ones.
Can anyone help, please?