Is it possible to do a linq group by and group months into quarters, Ie Q1 Jan to apr etc etc
Something like this
Enumerable.Range(1,12) .Select(o => new DateTime(DateTime.Today.Year, o, 1)) .GroupBy(o => (o.Month - 1) / 3)
1.4m articles
1.4m replys
5 comments
57.0k users