DataRelation::DataSet Property
.NET Framework (current version)
Gets the DataSet to which the DataRelation belongs.
Assembly: System.Data (in System.Data.dll)
The DataRelationCollection associated with a DataSet is accessed through the Relations property of the DataSet object.
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
.NET Framework
Available since 1.1
Available since 1.1
Show: