Hi,
Can you tell me how to code the following linq query for the lightweight DataTable. AsEnumerable is not supported. This query works for the Microsoft DataTable. This is a silverlight app.
Thanks
Rich
Can you tell me how to code the following linq query for the lightweight DataTable. AsEnumerable is not supported. This query works for the Microsoft DataTable. This is a silverlight app.
Thanks
Rich
IEnumerable<
DataRow
> query =
from row in dataTable.AsEnumerable()
where row.Field<
String
>("SchemaName") == "dbo" &&
row.Field<
String
>("TableName") == "authors"
select row;