Re: LINQ to DataSet change in .NET 4.0
I just created a new typed DataSet in .NET 4 and I can query it directly, without using Cast:
from row in new DataSet1().DataTable1
where row.DataColumn1 == "xyz"
select row.DataColumn2;
Could you try in a blank project with a new DataSet?
Also, what is the error message you are getting?
|