DataRelation::ParentTable Property
.NET Framework (current version)
Gets the parent DataTable of this DataRelation.
Assembly: System.Data (in System.Data.dll)
The following example gets the parent DataTable of a DataRelation.
Private Sub GetParentTable() ' Get a DataRelation of a DataSet. Dim relation As DataRelation = _ DataSet1.Relations("CustomerOrders") ' Get the parent DataTable of the relation. Dim table As DataTable = relation.ParentTable ' Print the name and number of rows of the parent table. Console.WriteLine(table.TableName.ToString()) Console.WriteLine(table.Rows.Count.ToString()) End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: