I am trying to do a query to an IEnumerable to group by week, for example:
IEnumerable
Project(Name, DateStart,ID)
I have
I think to simplify this task you can add WeekNumber property into Project class and fill it when you are creating object of Project after you can easy group by WeekNumber property
Project(Name, DateStart,ID,WeekNumber)