Trying to convert a SQL stored proc that used a group by rollup into a DataTable. I have used LINQ for the most part. But I can't figure out the GROUP BY ROLLUP part. I need to be able to do a GROUP BY ROLLUP for multiple fields on a DataTable. Is this possible at all? I know it is not built into LINQ. Can I execute SQL in memory on the DataTable to do the GROUP BY ROLLUP because it seems overly difficult to do it otherwise.
feedback
|