I\'m trying to perform a LINQ query on a DataTable object and bizarrely I am finding that performing such queries on DataTables is not straightforward. For example:
var results = from DataRow myRow in myDataTable.Rows where (int)myRow["RowNo"] == 1 select myRow