RelatedColumns [ForeignKeyConstraint only]
DataColumn[] cols
= Constraint.RelatedColumns;
This returns an array containing the parent
DataColumn
objects for this relationship.
Typically, this is a single column from the parent
DataTable
. For example, if you define a
Customers.CustomerID
→
Orders.CustomerID
relationship, the
Orders
table contains the
ForeignKeyConstraint
object, and the
Customers
table is the related table. The
ForeignKeyConstraint.RelatedColumns
property then
returns a single DataColumn
representing the
Customers.CustomerID
field.