DataRow.GetParentRow Methode

Definition

Ruft die übergeordnete Zeile einer DataRow ab.

Überlädt

GetParentRow(DataRelation)

Ruft unter Verwendung der angegebenen DataRow die übergeordnete Zeile einer DataRelation ab.

GetParentRow(String)

Ruft unter Verwendung des angegebenen DataRow einer RelationName die übergeordnete Zeile einer DataRelation ab.

GetParentRow(DataRelation, DataRowVersion)

Ruft unter Verwendung der angegebenen DataRow und DataRelation die übergeordnete Zeile einer DataRowVersion ab.

GetParentRow(String, DataRowVersion)

Ruft unter Verwendung des angegebenen DataRow einer RelationName und der DataRelation die übergeordnete Zeile einer DataRowVersion ab.

GetParentRow(DataRelation)

Quelle:
DataRow.cs
Quelle:
DataRow.cs
Quelle:
DataRow.cs

Ruft unter Verwendung der angegebenen DataRow die übergeordnete Zeile einer DataRelation ab.

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

Parameter

relation
DataRelation

Der zu verwendende DataRelation.

Gibt zurück

Die übergeordnete DataRow der aktuellen Zeile.

Ausnahmen

Die relation gehört nicht zur DataTable.

- oder -

Die Zeile ist null.

Eine untergeordnete Zeile verfügt über mehrere übergeordnete Elemente.

Diese Zeile gehört nicht zur untergeordneten Tabelle des DataRelation-Objekts.

Die Zeile gehört nicht zu einer Tabelle.

Beispiele

Im folgenden Beispiel wird verwendet, GetParentRow um die untergeordneten DataRow Objekte für jedes untergeordnete DataRelation Objekt in einem DataTablezurückzugeben. Der Wert jeder Spalte in der Zeile wird dann gedruckt.

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

Hinweise

In einem DataSetwird die Auflistung aller übergeordneten DataRelation Objekte für das Dataset von der GetParentRows -Methode zurückgegeben.

DataTable Enthält auch eine Auflistung von DataRelation -Objekten, die von der ParentRelations -Eigenschaft zurückgegeben werden.

Weitere Informationen

Gilt für:

GetParentRow(String)

Quelle:
DataRow.cs
Quelle:
DataRow.cs
Quelle:
DataRow.cs

Ruft unter Verwendung des angegebenen DataRow einer RelationName die übergeordnete Zeile einer DataRelation ab.

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

Parameter

relationName
String

Der RelationName einer DataRelation.

Gibt zurück

Die übergeordnete DataRow der aktuellen Zeile.

Ausnahmen

Die Beziehung und die Zeile gehören nicht zu derselben Tabelle.

Eine untergeordnete Zeile verfügt über mehrere übergeordnete Elemente.

Die Zeile gehört nicht zu der Tabelle.

Beispiele

Im folgenden Beispiel wird verwendet, GetParentRow um einen Wert aus jeder übergeordneten Zeile in DataRow einem DataTablezu drucken.

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

Hinweise

In einem DataSetwird die Auflistung aller übergeordneten DataRelation Objekte für das Dataset von der GetParentRows -Methode zurückgegeben.

DataTable Enthält auch eine Auflistung von DataRelation -Objekten, die von der ParentRelations -Eigenschaft zurückgegeben werden.

Gilt für:

GetParentRow(DataRelation, DataRowVersion)

Quelle:
DataRow.cs
Quelle:
DataRow.cs
Quelle:
DataRow.cs

Ruft unter Verwendung der angegebenen DataRow und DataRelation die übergeordnete Zeile einer DataRowVersion ab.

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

Parameter

relation
DataRelation

Der zu verwendende DataRelation.

version
DataRowVersion

Einer der DataRowVersion-Werte, der die Version der abzurufenden Daten angibt.

Gibt zurück

Die übergeordnete DataRow der aktuellen Zeile.

Ausnahmen

Die Zeile ist null.

- oder -

Die relation gehört nicht zu den übergeordneten Beziehungen dieser Tabelle.

Eine untergeordnete Zeile verfügt über mehrere übergeordnete Elemente.

Die untergeordnete Tabelle der Beziehung ist nicht die Tabelle, zu der die Zeile gehört.

Die Zeile gehört nicht zu einer Tabelle.

In der Zeile ist diese Version der Daten nicht enthalten.

Beispiele

Im folgenden Beispiel wird verwendet, GetParentRow um die untergeordneten DataRow Objekte für jedes untergeordnete DataRelation Objekt in einem DataTablezurückzugeben. Der Wert jeder Spalte in der Zeile wird dann gedruckt.

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

Hinweise

In einem DataSetwird die Auflistung aller übergeordneten DataRelation Objekte für das Dataset von der GetParentRows -Methode zurückgegeben.

DataTable Enthält auch eine Auflistung von DataRelation -Objekten, die von der ParentRelations -Eigenschaft zurückgegeben werden.

Verwenden Sie die HasVersion -Eigenschaft, um zu bestimmen, ob das DataRowVersion gewünschte vorhanden ist.

Weitere Informationen

Gilt für:

GetParentRow(String, DataRowVersion)

Quelle:
DataRow.cs
Quelle:
DataRow.cs
Quelle:
DataRow.cs

Ruft unter Verwendung des angegebenen DataRow einer RelationName und der DataRelation die übergeordnete Zeile einer DataRowVersion ab.

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

Parameter

relationName
String

Der RelationName einer DataRelation.

version
DataRowVersion

Einer der DataRowVersion-Werte.

Gibt zurück

Die übergeordnete DataRow der aktuellen Zeile.

Ausnahmen

Die Beziehung und die Zeile gehören nicht zu derselben Tabelle.

relation ist null.

Eine untergeordnete Zeile verfügt über mehrere übergeordnete Elemente.

Die Zeile gehört nicht zu der Tabelle.

Die Zeile verfügt nicht über die angeforderte DataRowVersion.

Beispiele

Im folgenden Beispiel wird verwendet, GetParentRow um einen Wert aus jeder übergeordneten Zeile in DataRow einem DataTablezu drucken.

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

Hinweise

In einem DataSetwird die Auflistung aller übergeordneten DataRelation Objekte für das Dataset von der GetParentRows -Methode zurückgegeben.

DataTable Enthält auch eine Auflistung von DataRelation -Objekten, die von der ParentRelations -Eigenschaft zurückgegeben werden.

Verwenden Sie die HasVersion -Eigenschaft, um zu bestimmen, ob das DataRowVersion gewünschte vorhanden ist.

Gilt für: