I cannot find a way to make this work and hoping someone has an idea. A simplified example would be having a list of say integers 1-100, i want to group every 3 rows so the
var q = Enumerable.Range(0, 100).GroupBy(x => x/3);
Am I missing something?