DataRow.GetParentRow Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nadřazený řádek DataRow.
Přetížení
GetParentRow(DataRelation) |
Získá nadřazený řádek DataRow pomocí zadané DataRelation. |
GetParentRow(String) |
Získá nadřazený řádek DataRow pomocí zadané RelationNameDataRelation. |
GetParentRow(DataRelation, DataRowVersion) |
Získá nadřazený řádek DataRow pomocí zadané DataRelationa DataRowVersion. |
GetParentRow(String, DataRowVersion) |
Získá nadřazený řádek DataRow pomocí zadané RelationNameDataRelationa DataRowVersion. |
GetParentRow(DataRelation)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá nadřazený řádek DataRow pomocí zadané 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, která se má použít.
Návraty
Nadřazený DataRow aktuálního řádku.
Výjimky
Podřízený řádek má více nadřazených prvků.
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 v DataTable. Potom se vytiskne hodnota každého sloupce v řádku.
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 DataSetje kolekce všech nadřazených DataRelation objektů pro datovou sadu vrácena metodou GetParentRows.
DataTable také obsahuje kolekci DataRelation objektů vrácených vlastností ParentRelations.
Viz také
Platí pro
GetParentRow(String)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá nadřazený řádek DataRow pomocí zadané 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
- relationName
- String
Návraty
Nadřazený DataRow aktuálního řádku.
Výjimky
Relace a řádek nepatří do stejné tabulky.
Podřízený řádek má více nadřazených prvků.
Řá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 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 DataSetje kolekce všech nadřazených DataRelation objektů pro datovou sadu vrácena metodou GetParentRows.
DataTable také obsahuje kolekci DataRelation objektů vrácených vlastností ParentRelations.
Platí pro
GetParentRow(DataRelation, DataRowVersion)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá nadřazený řádek DataRow pomocí zadané 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
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ý DataRow aktuálního řádku.
Výjimky
Podřízený řádek má více nadřazených prvků.
Podřízená tabulka relace není tabulkou, 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 v DataTable. Potom se vytiskne hodnota každého sloupce v řádku.
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 DataSetje kolekce všech nadřazených DataRelation objektů pro datovou sadu vrácena metodou GetParentRows.
DataTable také obsahuje kolekci DataRelation objektů vrácených vlastností ParentRelations.
Pomocí vlastnosti HasVersion určete, zda DataRowVersion, kterou chcete mít.
Viz také
Platí pro
GetParentRow(String, DataRowVersion)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá nadřazený řádek DataRow pomocí zadané RelationNameDataRelationa 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
- version
- DataRowVersion
Jedna z DataRowVersion hodnot.
Návraty
Nadřazený DataRow aktuálního řádku.
Výjimky
Relace a řádek nepatří do stejné tabulky.
relation
je null
.
Podřízený řádek má více nadřazených prvků.
Řádek nepatří do tabulky.
Řádek nemá požadovanou 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 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 DataSetje kolekce všech nadřazených DataRelation objektů pro datovou sadu vrácena metodou GetParentRows.
DataTable také obsahuje kolekci DataRelation objektů vrácených vlastností ParentRelations.
Pomocí vlastnosti HasVersion určete, zda DataRowVersion, kterou chcete mít.