Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataTable::ParentRelations Property

 

Gets the collection of parent relations for this DataTable.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
[BrowsableAttribute(false)]
property DataRelationCollection^ ParentRelations {
	DataRelationCollection^ get();
}

Property Value

Type: System.Data::DataRelationCollection^

A DataRelationCollection that contains the parent relations for the table. An empty collection is returned if no DataRelation objects exist.

The following example uses the ParentRelations property to return each parent DataRelation in a DataTable. Each relation is then used as an argument in the GetParentRows method of the DataRow to return an array of rows. The value of each column in the row is then printed.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft