Try this:
courses.GroupBy(c => c.CourseID)
.Select(g => new
{
Id = g.Key,
Months = String.Join(", ", g.Select(c => c.Month).ToArray())
});
If you're using .NET 4.0 you don't need the ToArray call because String.Join has a new overload to take an IEnumerable.
Explaining how this works:
First you group the set of courses by the CourseID. This will return you an IEnumerable<IGrouping<int, Course>> - each element in the enumerable contains a property called Key - this is the CourseID of all the courses that were grouped into it.
This bit is key: IGrouping is also an IEnumerable<Course> - this means that it can be iterated through returning each of the elements that were grouped under the ID held in Key.
All the last part does is select a new anonymous type with two properties, Id and Months:
- Id is set to the Key (the CourseID)
- Months is set to the result of joining together all the Month values for the grouped courses. This is done using String.Join as it makes it easy specify a delimiter for the values.
GroupBy,AggregateandSelect? – bzlm Jun 11 '11 at 15:14