0
votes
0answers
302 views

C# DataTable GROUP BY WITH ROLLUP / Execute SQL

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 ...
1
vote
1answer
629 views

Using LINQ to fetch result from nested SQL queries

This is my first question and first day in Linq so bit difficult day for me to understand. I want to fetch some records from database i.e. select * from tblDepartment where department_id in ( ...