DataView::ToTable Method (String)
.NET Framework 4.5
Namespace: System.Data
Assembly: System.Data (in System.Data.dll)
Parameters
- tableName
- Type: System::String
The name of the returned DataTable.
Return Value
Type: System.Data::DataTableA new DataTable instance that contains the requested rows and columns.
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 with a new name 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: FilteredTable
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.