DataRow.GetParentRow メソッド
DataRow の親行を取得します。
オーバーロードの一覧
指定した DataRelation を使用して、 DataRow の親行を取得します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetParentRow(DataRelation) As DataRow
[JScript] public function GetParentRow(DataRelation) : DataRow;
DataRelation の指定した RelationName を使用して、 DataRow の親行を取得します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetParentRow(String) As DataRow
指定した DataRelation と DataRowVersion を使用して、 DataRow の親行を取得します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetParentRow(DataRelation, DataRowVersion) As DataRow
[C#] public DataRow GetParentRow(DataRelation, DataRowVersion);
[C++] public: DataRow* GetParentRow(DataRelation*, DataRowVersion);
[JScript] public function GetParentRow(DataRelation, DataRowVersion) : DataRow;
DataRelation の指定した RelationName と DataRowVersion を使用して、 DataRow の親行を取得します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetParentRow(String, DataRowVersion) As DataRow
[C++] public: DataRow* GetParentRow(String*, DataRowVersion);
[JScript] public function GetParentRow(String, DataRowVersion) : DataRow;
使用例
[Visual Basic, C#, C++] GetParentRow を使用して、 DataTable 内の各 DataRow の各親行から値を出力する例を次に示します。
[Visual Basic, C#, C++] メモ ここでは、GetParentRow のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Private Sub GetParentRowForTable _
(thisTable As DataTable, relation As String, version As DataRowVersion)
If thisTable Is Nothing Then
Return
End If
' For each row in the table, print column 1 of the parent DataRow.
Dim parentRow As DataRow
Dim r As DataRow
For Each r In thisTable.Rows
parentRow = r.GetParentRow(relation, version)
Console.Write(ControlChars.Tab + " child row: " + r(1).ToString())
Console.Write(ControlChars.Tab + " parent row: " _
+ parentRow(1).ToString() + ControlChars.Cr)
Next r
End Sub
Private Sub CallGetParentRowForTable()
' An example of calling the function.
Dim thisTable As DataTable = DataSet1.Tables("Products")
Dim relation As DataRelation = thisTable.ParentRelations(0)
' Print only original versions of parent rows.
GetParentRowForTable(thisTable, relation.RelationName, _
DataRowVersion.Original)
End Sub
[C#]
private void GetParentRowForTable(DataTable thisTable, string relation, DataRowVersion version){
if(thisTable ==null){return;}
// For each row in the table, print column 1 of the parent DataRow.
DataRow parentRow;
foreach(DataRow r in thisTable.Rows){
parentRow = r.GetParentRow(relation, version);
Console.Write("\t child row: " + r[1]);
Console.Write("\t parent row: " + parentRow[1]+ "\n");
}
}
private void CallGetParentRowForTable(){
// An example of calling the function.
DataTable thisTable = DataSet1.Tables["Products"];
DataRelation relation = thisTable.ParentRelations[0];
// Print only original versions of parent rows.
GetParentRowForTable(thisTable, relation.RelationName,
DataRowVersion.Original);
}
[C++]
private:
void GetParentRowForTable(DataTable* thisTable, String* relation, DataRowVersion version){
if(thisTable ==0){return;}
// For each row in the table, print column 1 of the parent DataRow.
DataRow* parentRow;
System::Collections::IEnumerator* myEnum = thisTable->Rows->GetEnumerator();
while (myEnum->MoveNext())
{
DataRow* r = __try_cast<DataRow*>(myEnum->Current);
parentRow = r->GetParentRow(relation, version);
Console::Write(S"\t child row: {0}", r->Item[1]);
Console::Write(S"\t parent row: {0}\n", parentRow->Item[1]);
}
}
void CallGetParentRowForTable(){
// An example of calling the function.
DataTable* thisTable = DataSet1->Tables->Item[S"Products"];
DataRelation* relation = thisTable->ParentRelations->Item[0];
// Print only original versions of parent rows.
GetParentRowForTable(thisTable, relation->RelationName,
DataRowVersion::Original);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。