I have a DataTable
named dt2
with data. I am calling its Select
method to get some specific rows.
DataRow[] foundRows;
expression = "parent_id=1";
foundRows = dt2.Select(expression);
How can I pass the Select
-method result to a new DataTable
– say FilteredData
?