DataRow.SetParentRow メソッド

定義

DataRow の親行を設定します。

オーバーロード

SetParentRow(DataRow)

指定した新しい親 DataRow を使用して、DataRow の親行を設定します。

SetParentRow(DataRow, DataRelation)

指定した新しい親 DataRowDataRow を使用して、DataRelation の親行を設定します。

SetParentRow(DataRow)

ソース:
DataRow.cs
ソース:
DataRow.cs
ソース:
DataRow.cs

指定した新しい親 DataRow を使用して、DataRow の親行を設定します。

public:
 void SetParentRow(System::Data::DataRow ^ parentRow);
public void SetParentRow (System.Data.DataRow? parentRow);
public void SetParentRow (System.Data.DataRow parentRow);
member this.SetParentRow : System.Data.DataRow -> unit
Public Sub SetParentRow (parentRow As DataRow)

パラメーター

parentRow
DataRow

新しい親 DataRow

適用対象

SetParentRow(DataRow, DataRelation)

ソース:
DataRow.cs
ソース:
DataRow.cs
ソース:
DataRow.cs

指定した新しい親 DataRowDataRow を使用して、DataRelation の親行を設定します。

public:
 void SetParentRow(System::Data::DataRow ^ parentRow, System::Data::DataRelation ^ relation);
public void SetParentRow (System.Data.DataRow? parentRow, System.Data.DataRelation? relation);
public void SetParentRow (System.Data.DataRow parentRow, System.Data.DataRelation relation);
member this.SetParentRow : System.Data.DataRow * System.Data.DataRelation -> unit
Public Sub SetParentRow (parentRow As DataRow, relation As DataRelation)

パラメーター

parentRow
DataRow

新しい親 DataRow

relation
DataRelation

使用するリレーションシップ DataRelation

例外

行の 1 つがテーブルに属していません。

行の 1 つが null です。

リレーションシップが DataRelationCollection オブジェクトの DataSet に属していません。

このリレーションシップの子 DataTable は、この行が属しているテーブルではありません。

次の例では、特定の子行の親行を設定します。

Private Sub SetParent()
    ' Get a ParentRow and a ChildRow from a DataSet.
    Dim childRow As DataRow = _
        DataSet1.Tables("Orders").Rows(1)
    Dim parentRow As DataRow = _
        DataSet1.Tables("Customers").Rows(20)

    ' Set the parent row of a DataRelation.
    childRow.SetParentRow(parentRow, _
        DataSet1.Relations("CustomerOrders"))
End Sub

適用対象