DataRow.GetParentRow Metoda

Definice

Získá nadřazený řádek objektu DataRow.

Přetížení

GetParentRow(DataRelation)

Získá nadřazený řádek objektu DataRow pomocí zadaného DataRelationobjektu .

GetParentRow(String)

Získá nadřazený řádek objektu DataRow pomocí zadaného RelationName objektu DataRelation.

GetParentRow(DataRelation, DataRowVersion)

Získá nadřazený řádek objektu DataRow pomocí zadaného DataRelationa DataRowVersion.

GetParentRow(String, DataRowVersion)

Získá nadřazený řádek objektu DataRow pomocí zadaného RelationName objektu DataRelationa DataRowVersion.

GetParentRow(DataRelation)

Zdroj:
DataRow.cs
Zdroj:
DataRow.cs
Zdroj:
DataRow.cs

Získá nadřazený řádek objektu DataRow pomocí zadaného DataRelationobjektu .

public:
 System::Data::DataRow ^ GetParentRow(System::Data::DataRelation ^ relation);
public System.Data.DataRow? GetParentRow (System.Data.DataRelation? relation);
public System.Data.DataRow GetParentRow (System.Data.DataRelation relation);
member this.GetParentRow : System.Data.DataRelation -> System.Data.DataRow
Public Function GetParentRow (relation As DataRelation) As DataRow

Parametry

relation
DataRelation

Hodnota, DataRelation která se má použít.

Návraty

Nadřazený prvek DataRow aktuálního řádku.

Výjimky

Hodnota relation nepatří do .DataTable

-nebo-

Řádek je null.

Podřízený řádek má více nadřazených řádků.

Tento řádek nepatří do podřízené tabulky objektu DataRelation .

Řádek nepatří do tabulky.

Příklady

Následující příklad používá GetParentRow k vrácení podřízených DataRow objektů pro každý podřízený DataRelation objekt v objektu DataTable. Hodnota každého sloupce v řádku je pak vytištěna.

private void GetParentRowForTable(DataTable thisTable,
    DataRelation relation)
{
    if(thisTable ==null){return;}
    // For each row in the table, print column 1
    // of the parent DataRow.
    DataRow parentRow;
    foreach(DataRow row in thisTable.Rows)
    {
        parentRow = row.GetParentRow(relation);
        Console.Write("\table child row: " + row[1]);
        Console.Write("\table parent row: " + parentRow[1]+ "\n");
    }
}

private void CallGetParentRowForTable()
{
    // An example of calling the function.
    DataTable thisTable = DataSet1.Tables["Products"];
    DataRelation relation = thisTable.ParentRelations[0];
    GetParentRowForTable(thisTable, relation);
}
Private Sub GetParentRowForTable _
   (thisTable As DataTable, relation As DataRelation)
    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 row As DataRow
    For Each row In  thisTable.Rows
        parentRow = row.GetParentRow(relation)
        Console.Write(ControlChars.Tab & " child row: " _
           & row(1).ToString())
        Console.Write(ControlChars.Tab & " parent row: " _
           & parentRow(1).ToString() & ControlChars.Cr)
    Next row
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)
    GetParentRowForTable(thisTable, relation)
End Sub

Poznámky

V objektu DataSetvrátí metoda kolekci všech nadřazených DataRelation objektů pro sadu GetParentRows dat.

Obsahuje DataTable také kolekci DataRelation objektů vrácených ParentRelations vlastností .

Viz také

Platí pro

GetParentRow(String)

Zdroj:
DataRow.cs
Zdroj:
DataRow.cs
Zdroj:
DataRow.cs

Získá nadřazený řádek objektu DataRow pomocí zadaného RelationName objektu DataRelation.

public:
 System::Data::DataRow ^ GetParentRow(System::String ^ relationName);
public System.Data.DataRow? GetParentRow (string? relationName);
public System.Data.DataRow GetParentRow (string relationName);
member this.GetParentRow : string -> System.Data.DataRow
Public Function GetParentRow (relationName As String) As DataRow

Parametry

relationName
String

DataRelationHodnota RelationName .

Návraty

Nadřazený prvek DataRow aktuálního řádku.

Výjimky

Relace a řádek nepatří do stejné tabulky.

Podřízený řádek má více nadřazených řádků.

Řádek nepatří do tabulky.

Příklady

Následující příklad používá GetParentRow k tisku hodnoty z každého nadřazeného řádku každého DataRow v objektu DataTable.

private void GetParentRowForTable(
    DataTable thisTable, string relation)
{
    if(thisTable ==null){return;}
    // For each row in the table, print column 1
    // of the parent DataRow.
    DataRow parentRow;
    foreach(DataRow row in thisTable.Rows)
    {
        parentRow = row.GetParentRow(relation);
        Console.Write("\table child row: " + row[1]);
        Console.Write("\table parent row: " + parentRow[1]+ "\n");
    }
}

private void CallGetParentRowForTable()
{
    // An example of calling the function.
    DataTable thisTable = DataSet1.Tables["Products"];
    DataRelation relation = thisTable.ParentRelations[0];
    GetParentRowForTable(thisTable, relation.RelationName);
}
Private Sub GetParentRowForTable( _
    thisTable As DataTable, relation As String)
     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 row As DataRow
     For Each row In  thisTable.Rows
         parentRow = row.GetParentRow(relation)
         Console.Write(ControlChars.Tab + " child row: " _
            + row(1).ToString())
         Console.Write(ControlChars.Tab + " parent row: " _
            + parentRow(1).ToString() + ControlChars.Cr)
     Next row
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)
     GetParentRowForTable(thisTable, relation.RelationName)
End Sub

Poznámky

V objektu DataSetvrátí metoda kolekci všech nadřazených DataRelation objektů pro sadu GetParentRows dat.

Obsahuje DataTable také kolekci DataRelation objektů vrácených ParentRelations vlastností .

Platí pro

GetParentRow(DataRelation, DataRowVersion)

Zdroj:
DataRow.cs
Zdroj:
DataRow.cs
Zdroj:
DataRow.cs

Získá nadřazený řádek objektu DataRow pomocí zadaného DataRelationa DataRowVersion.

public:
 System::Data::DataRow ^ GetParentRow(System::Data::DataRelation ^ relation, System::Data::DataRowVersion version);
public System.Data.DataRow? GetParentRow (System.Data.DataRelation? relation, System.Data.DataRowVersion version);
public System.Data.DataRow GetParentRow (System.Data.DataRelation relation, System.Data.DataRowVersion version);
member this.GetParentRow : System.Data.DataRelation * System.Data.DataRowVersion -> System.Data.DataRow
Public Function GetParentRow (relation As DataRelation, version As DataRowVersion) As DataRow

Parametry

relation
DataRelation

Hodnota, DataRelation která se má použít.

version
DataRowVersion

Jedna z DataRowVersion hodnot určující verzi dat, která se mají získat.

Návraty

Nadřazený prvek DataRow aktuálního řádku.

Výjimky

Řádek je null.

-nebo-

Objekt relation nepatří do nadřazených relací této tabulky.

Podřízený řádek má více nadřazených řádků.

Podřízená tabulka relace není tabulka, do které řádek patří.

Řádek nepatří do tabulky.

Řádek nemá tuto verzi dat.

Příklady

Následující příklad používá GetParentRow k vrácení podřízených DataRow objektů pro každý podřízený DataRelation objekt v objektu DataTable. Hodnota každého sloupce v řádku je pak vytištěna.

private void GetParentRowForTable(DataTable thisTable,
    DataRelation relation,
    DataRowVersion version)
{
    if(thisTable ==null){return;}
    // For each row in the table, print column 1 of the
    // parent DataRow.
    DataRow parentRow;
    foreach(DataRow row in thisTable.Rows)
    {
        parentRow = row.GetParentRow(relation, version);
        Console.Write("\table child row: " + row[1]);
        Console.Write("\table 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,
        DataRowVersion.Original);
}
Private Sub GetParentRowForTable _
    (thisTable As DataTable, relation As DataRelation, _
    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 row As DataRow
    For Each row In  thisTable.Rows
        parentRow = row.GetParentRow(relation, version)
        Console.Write(ControlChars.Tab & " child row: " & _
            row(1).ToString())
        Console.Write(ControlChars.Tab & " parent row: " _
            & parentRow(1).ToString() & ControlChars.Cr)
    Next row
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, _
        DataRowVersion.Original)
End Sub

Poznámky

V objektu DataSetvrátí metoda kolekci všech nadřazených DataRelation objektů pro sadu GetParentRows dat.

Obsahuje DataTable také kolekci DataRelation objektů vrácených ParentRelations vlastností .

HasVersion Pomocí vlastnosti určete, zda DataRowVersion požadovaná hodnota existuje.

Viz také

Platí pro

GetParentRow(String, DataRowVersion)

Zdroj:
DataRow.cs
Zdroj:
DataRow.cs
Zdroj:
DataRow.cs

Získá nadřazený řádek objektu DataRow pomocí zadaného RelationName objektu DataRelationa DataRowVersion.

public:
 System::Data::DataRow ^ GetParentRow(System::String ^ relationName, System::Data::DataRowVersion version);
public System.Data.DataRow? GetParentRow (string? relationName, System.Data.DataRowVersion version);
public System.Data.DataRow GetParentRow (string relationName, System.Data.DataRowVersion version);
member this.GetParentRow : string * System.Data.DataRowVersion -> System.Data.DataRow
Public Function GetParentRow (relationName As String, version As DataRowVersion) As DataRow

Parametry

relationName
String

DataRelationHodnota RelationName .

version
DataRowVersion

Jedna z DataRowVersion hodnot.

Návraty

Nadřazený prvek DataRow aktuálního řádku.

Výjimky

Relace a řádek nepatří do stejné tabulky.

Hodnota relation je null.

Podřízený řádek má více nadřazených řádků.

Řádek nepatří do tabulky.

Řádek neobsahuje požadovaný DataRowVersion.

Příklady

Následující příklad používá GetParentRow k tisku hodnoty z každého nadřazeného řádku každého DataRow v objektu DataTable.

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 row in thisTable.Rows)
    {
        parentRow = row.GetParentRow(relation, version);
        Console.Write("\t child row: " + row[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);
}
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 row As DataRow
     For Each row In  thisTable.Rows
         parentRow = row.GetParentRow(relation, version)
         Console.Write(ControlChars.Tab & " child row: " _
            & row(1).ToString())
         Console.Write(ControlChars.Tab & " parent row: " _
            & parentRow(1).ToString() & ControlChars.Cr)
     Next row
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

Poznámky

V objektu DataSetvrátí metoda kolekci všech nadřazených DataRelation objektů pro sadu GetParentRows dat.

Obsahuje DataTable také kolekci DataRelation objektů vrácených ParentRelations vlastností .

HasVersion Pomocí vlastnosti určete, zda DataRowVersion požadovaná hodnota existuje.

Platí pro