DataRelation.DataSet Property

Definition

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