Hi,
I am unable to LINQ Query on a datatable.
It is throwing me the error : Cannot convert lambda expression to type 'string' because it is not a delegate type.
var query = from temp in dt
select name;
error is throwing at select statement.
Can anybody please help with this Issue.
Thanks.