Is there any way to possibly filter data in DataTable without using LINQ and Entity Framework? Output can be Enumerable.
I was able to run 2nd line of code using LINQ and Basic filter using myDataTable.Select statement.
myDataTable.Select("[Name] is NULL OR [Name] <> 'n/a'" )
myDataTable.Select("select sum(col1), col2 group by col1, col2")