DataView::ToTable Method ()
.NET Framework (current version)
Namespace:
System.Data
Assembly: System.Data (in System.Data.dll)
Return to top
Assembly: System.Data (in System.Data.dll)
Because this method does not let you specify the name for the output DataTable, its name is the same as the name of the source DataTable. Because this method does not let you specify a subset of available columns, the output table contains the same columns as the input table.
The following console application example creates a DataTable, fills the DataTable with data, creates a filtered view based on the original data, and finally, creates a DataTable that contains the filtered rows.
The example displays the following text in the console window:
Original table name: NewTable Current Values in Table 1, Fruit, Apple, 14 2, Fruit, Orange, 27 3, Bread, Muffin, 23 4, Fish, Salmon, 12 Current Values in View 2, Fruit, Orange, 27 3, Bread, Muffin, 23 Table created from filtered DataView 2, Fruit, Orange, 27 3, Bread, Muffin, 23 New table name: NewTable
.NET Framework
Available since 2.0
Available since 2.0
Show: