英語で読む

次の方法で共有


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);

パラメーター

parentRow
DataRow

新しい親 DataRow

適用対象

.NET 9 およびその他のバージョン
製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

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);

パラメーター

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

適用対象

.NET 9 およびその他のバージョン
製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1