Gets the DataSet to which this table belongs.
Assembly: System.Data (in System.Data.dll)
Syntax
Examples
The following example returns the parent DataSet of a given table through the DataSet property.
Private Function GetDataSetFromTable() As DataSet
Dim table As DataTable
' Check to see if the DataGrid's DataSource property
' is a DataTable.
If TypeOf dataGrid1.DataSource Is DataTable Then
table = CType(DataGrid1.DataSource, DataTable)
GetDataSetFromTable = table.DataSet
Else
return Nothing
End If
End Function
private DataSet GetDataSetFromTable()
{
DataTable table;
// Check to see if the DataGrid's DataSource
// is a DataTable.
if( dataGrid1.DataSource is DataTable)
{
table = (DataTable) dataGrid1.DataSource;
// Return the DataTable's DataSet
return table.DataSet;
}
else
{
return null;
}
}
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.