Udostępnij za pośrednictwem


DataRow.GetParentRow Metoda

Definicja

Pobiera wiersz nadrzędny DataRow.

Przeciążenia

GetParentRow(DataRelation)

Pobiera wiersz nadrzędny DataRow przy użyciu określonego DataRelation.

GetParentRow(String)

Pobiera wiersz nadrzędny DataRow przy użyciu określonej RelationNameDataRelation.

GetParentRow(DataRelation, DataRowVersion)

Pobiera wiersz nadrzędny DataRow przy użyciu określonego DataRelationi DataRowVersion.

GetParentRow(String, DataRowVersion)

Pobiera wiersz nadrzędny DataRow przy użyciu określonej RelationNameDataRelationi DataRowVersion.

GetParentRow(DataRelation)

Źródło:
DataRow.cs
Źródło:
DataRow.cs
Źródło:
DataRow.cs

Pobiera wiersz nadrzędny DataRow przy użyciu określonego DataRelation.

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

DataRelation do użycia.

Zwraca

Nadrzędna DataRow bieżącego wiersza.

Wyjątki

relation nie należy do DataTable.

-lub-

Wiersz jest null.

Wiersz podrzędny ma wielu rodziców.

Ten wiersz nie należy do tabeli podrzędnej obiektu DataRelation.

Wiersz nie należy do tabeli.

Przykłady

W poniższym przykładzie użyto GetParentRow do zwrócenia obiektów podrzędnych DataRow dla każdego DataRelation podrzędnego w DataTable. Następnie jest drukowana wartość każdej kolumny w wierszu.

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

Uwagi

W DataSetkolekcja wszystkich obiektów nadrzędnych DataRelation dla zestawu danych jest zwracana przez metodę GetParentRows.

DataTable zawiera również kolekcję obiektów DataRelation zwróconych przez właściwość ParentRelations.

Zobacz też

Dotyczy

GetParentRow(String)

Źródło:
DataRow.cs
Źródło:
DataRow.cs
Źródło:
DataRow.cs

Pobiera wiersz nadrzędny DataRow przy użyciu określonej RelationNameDataRelation.

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

Zwraca

Nadrzędna DataRow bieżącego wiersza.

Wyjątki

Relacja i wiersz nie należą do tej samej tabeli.

Wiersz podrzędny ma wielu rodziców.

Wiersz nie należy do tabeli.

Przykłady

W poniższym przykładzie użyto GetParentRow do wydrukowania wartości z każdego wiersza nadrzędnego każdego DataRow w 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

Uwagi

W DataSetkolekcja wszystkich obiektów nadrzędnych DataRelation dla zestawu danych jest zwracana przez metodę GetParentRows.

DataTable zawiera również kolekcję obiektów DataRelation zwróconych przez właściwość ParentRelations.

Dotyczy

GetParentRow(DataRelation, DataRowVersion)

Źródło:
DataRow.cs
Źródło:
DataRow.cs
Źródło:
DataRow.cs

Pobiera wiersz nadrzędny DataRow przy użyciu określonego DataRelationi 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

DataRelation do użycia.

version
DataRowVersion

Jedna z wartości DataRowVersion określająca wersję danych do pobrania.

Zwraca

Nadrzędna DataRow bieżącego wiersza.

Wyjątki

Wiersz jest null.

-lub-

relation nie należy do relacji nadrzędnych tej tabeli.

Wiersz podrzędny ma wielu rodziców.

Tabela podrzędna relacji nie jest tabelą, do którego należy wiersz.

Wiersz nie należy do tabeli.

Wiersz nie ma tej wersji danych.

Przykłady

W poniższym przykładzie użyto GetParentRow do zwrócenia obiektów podrzędnych DataRow dla każdego DataRelation podrzędnego w DataTable. Następnie jest drukowana wartość każdej kolumny w wierszu.

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

Uwagi

W DataSetkolekcja wszystkich obiektów nadrzędnych DataRelation dla zestawu danych jest zwracana przez metodę GetParentRows.

DataTable zawiera również kolekcję obiektów DataRelation zwróconych przez właściwość ParentRelations.

Użyj właściwości HasVersion, aby określić, czy DataRowVersion istnieje.

Zobacz też

Dotyczy

GetParentRow(String, DataRowVersion)

Źródło:
DataRow.cs
Źródło:
DataRow.cs
Źródło:
DataRow.cs

Pobiera wiersz nadrzędny DataRow przy użyciu określonej RelationNameDataRelationi 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

version
DataRowVersion

Jedna z wartości DataRowVersion.

Zwraca

Nadrzędna DataRow bieżącego wiersza.

Wyjątki

Relacja i wiersz nie należą do tej samej tabeli.

relation jest null.

Wiersz podrzędny ma wielu rodziców.

Wiersz nie należy do tabeli.

Wiersz nie ma żądanego DataRowVersion.

Przykłady

W poniższym przykładzie użyto GetParentRow do wydrukowania wartości z każdego wiersza nadrzędnego każdego DataRow w 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

Uwagi

W DataSetkolekcja wszystkich obiektów nadrzędnych DataRelation dla zestawu danych jest zwracana przez metodę GetParentRows.

DataTable zawiera również kolekcję obiektów DataRelation zwróconych przez właściwość ParentRelations.

Użyj właściwości HasVersion, aby określić, czy DataRowVersion istnieje.

Dotyczy