I have an object that looks like this:
Notice { string Name, string Address }
In a List I want to output A
List
var noticesGrouped = notices.GroupBy(n => n.Name). Select(group => new { NoticeName = group.Key, Notices = group.ToList(), Count = group.Count() });