Hi
I have a LINQ query
var query = from t in TypedDataTable
select t
query contains Typed DataRows but I don't seem to be able to cast the
returned DataTable from the DataTableExtens ions.CopyToData Table:
DataSet.TypedTa ble tbl = (DataSet.TypedT able)query.Copy ToDataTable();
What would be the best approach here?
Thanks
Andrew
I have a LINQ query
var query = from t in TypedDataTable
select t
query contains Typed DataRows but I don't seem to be able to cast the
returned DataTable from the DataTableExtens ions.CopyToData Table:
DataSet.TypedTa ble tbl = (DataSet.TypedT able)query.Copy ToDataTable();
What would be the best approach here?
Thanks
Andrew
Comment