what is the linq equivalent of the following:
SELECT Mytable.A, MyTable.B, SUM(MyTable.C)
FROM MyTable
GROUP BY Mytable.A, MyTable.B
ORDER BY Mytable.A, MyTable.B
This is trivial in SQL, but seems to be very difficult in LINQ. What am I missing?