I would like to Group values by month quarter. Supposing I have the following month quarters:
Month Range Quarter Name
7->9 Q1
10->12 Q2
1->3 Q3
4->6 Q4
I want my results in linq to be grouped by Quarter based on Month number. How can I achieve this in linq?