Hi there,
I have to join results from 2 sprocs in LINQ but got the error message: 'System.Data.DataSet' does not contain a definition for 'Where' and no extension method 'Where' accepting a first argument of type 'System.Data.DataSet' could be found (press F4 to add a using directive or assembly reference)
However after added the DataSetExtensions the error still appears.
Code:
var c = GetAllGameCategories (123);
var d = GetGameCategories(22458);
Var e = c.Where(....); // Error on this line!
Any help appreciated.