DataTable.DataSet Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the DataSet to which this table belongs.
public:
property System::Data::DataSet ^ DataSet { System::Data::DataSet ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Data.DataSet? DataSet { get; }
[System.ComponentModel.Browsable(false)]
public System.Data.DataSet DataSet { get; }
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("DataTableDataSetDescr")]
public System.Data.DataSet DataSet { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataSet : System.Data.DataSet
[<System.ComponentModel.Browsable(false)>]
[<System.Data.DataSysDescription("DataTableDataSetDescr")>]
member this.DataSet : System.Data.DataSet
Public ReadOnly Property DataSet As DataSet
Property Value
The DataSet to which this table belongs.
- Attributes
Examples
The following example returns the parent DataSet of a given table through the DataSet property.
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;
}
}
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
Remarks
If a control is data bound to a DataTable, and the table belongs to a DataSet, you can get to the DataSet through this property.
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.