I have a database table that represents Events. The table has 2 main fields EventDate and EventTitle.
I am trying to group the events by year to be displayed to the user. I am trying to use a Linq query to pull the distinct years that have events and for each year there should be a list of events in that year. So each record in the list would have a year and list of Events
The results should look like this:

I assume this can be done with one linq query but my linq knowledge is basic. So far I have only gotten the distinct years in a list with this query:
var yearsList = (from e in Events
select e.EventDate.Year).Distinct();
How do I add a list of events to each year record?
Thanks, Oran
