Sometimes you actually want to return a DataTable
than a DataView
. So a DataView
was not good in my case and I guess few others would want that too. Here is what I used to do
myDataTable.select("myquery").CopyToDataTable()
This will filter myDataTable
which is a DataTable and return a new DataTable
Hope someone will find that is useful