DataRelation.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 the DataRelation belongs.
public:
virtual property System::Data::DataSet ^ DataSet { System::Data::DataSet ^ get(); };
[System.ComponentModel.Browsable(false)]
public virtual System.Data.DataSet? DataSet { get; }
[System.ComponentModel.Browsable(false)]
public virtual System.Data.DataSet DataSet { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataSet : System.Data.DataSet
Public Overridable ReadOnly Property DataSet As DataSet
Property Value
A DataSet to which the DataRelation belongs.
- Attributes
Examples
The following example gets the DataSet of a DataRelation.
Private Sub GetRelDataSet(relation As DataRelation)
' Get the DataSet of the passed in DataRelation.
Dim dataSet As DataSet = relation.DataSet
' Print the table names of each table in the DataSet.
Dim table As DataTable
For Each table In dataSet.Tables
Console.WriteLine(table.TableName.ToString())
Next
End Sub
Remarks
The DataRelationCollection associated with a DataSet is accessed through the Relations property of the DataSet object.
Applies to
See also
Sodelujte z nami v storitvi GitHub
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.