Group by with multiple columns using lambda

var query = source.GroupBy(x => new { x.Column1, x.Column2 });

Leave a Comment