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:
IEnumerable result = from myRow in dataTableResult.AsEnumerable() select myRow["server"].ToString() ;