DataRow.GetParentRow Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan baris induk dari DataRow.
Overload
GetParentRow(DataRelation) |
Mendapatkan baris induk dari DataRow menggunakan yang ditentukan DataRelation. |
GetParentRow(String) |
Mendapatkan baris induk dari DataRow menggunakan yang ditentukan RelationName dari DataRelation. |
GetParentRow(DataRelation, DataRowVersion) |
Mendapatkan baris induk dari DataRow menggunakan , dan DataRowVersionyang ditentukanDataRelation. |
GetParentRow(String, DataRowVersion) |
Mendapatkan baris induk dari DataRow menggunakan yang ditentukan RelationName dari DataRelation, dan DataRowVersion. |
GetParentRow(DataRelation)
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
Mendapatkan baris induk dari DataRow menggunakan yang ditentukan 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
Parameter
- relation
- DataRelation
yang DataRelation akan digunakan.
Mengembalikan
Induk DataRow baris saat ini.
Pengecualian
Baris anak memiliki beberapa orang tua.
Baris ini bukan milik tabel anak objek DataRelation .
Baris bukan milik tabel.
Contoh
Contoh berikut menggunakan GetParentRow untuk mengembalikan objek anak DataRow untuk setiap anak DataRelation dalam DataTable. Nilai setiap kolom dalam baris kemudian dicetak.
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
Keterangan
DataSetDalam , kumpulan semua objek induk DataRelation untuk himpunan data dikembalikan oleh GetParentRows metode .
DataTable juga berisi kumpulan DataRelation objek, yang dikembalikan oleh ParentRelations properti .
Lihat juga
Berlaku untuk
GetParentRow(String)
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
Mendapatkan baris induk dari DataRow menggunakan yang ditentukan RelationName dari 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
Parameter
- relationName
- String
RelationName dari DataRelation.
Mengembalikan
Induk DataRow baris saat ini.
Pengecualian
Relasi dan baris bukan milik tabel yang sama.
Baris anak memiliki beberapa orang tua.
Baris bukan milik tabel.
Contoh
Contoh berikut menggunakan GetParentRow untuk mencetak nilai dari setiap baris induk masing-masing DataRow dalam 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
Keterangan
DataSetDalam , kumpulan semua objek induk DataRelation untuk himpunan data dikembalikan oleh GetParentRows metode .
DataTable juga berisi kumpulan DataRelation objek, yang dikembalikan oleh ParentRelations properti .
Berlaku untuk
GetParentRow(DataRelation, DataRowVersion)
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
Mendapatkan baris induk dari DataRow menggunakan , dan DataRowVersionyang ditentukanDataRelation.
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
yang DataRelation akan digunakan.
- version
- DataRowVersion
Salah satu nilai yang DataRowVersion menentukan versi data yang akan didapatkan.
Mengembalikan
Induk DataRow baris saat ini.
Pengecualian
Baris anak memiliki beberapa orang tua.
Tabel anak relasi bukan tabel tempat baris berada.
Baris bukan milik tabel.
Baris tidak memiliki versi data ini.
Contoh
Contoh berikut menggunakan GetParentRow untuk mengembalikan objek anak DataRow untuk setiap anak DataRelation dalam DataTable. Nilai setiap kolom dalam baris kemudian dicetak.
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
Keterangan
DataSetDalam , kumpulan semua objek induk DataRelation untuk himpunan data dikembalikan oleh GetParentRows metode .
DataTable juga berisi kumpulan DataRelation objek, yang dikembalikan oleh ParentRelations properti .
HasVersion Gunakan properti untuk menentukan apakah DataRowVersion yang Anda inginkan ada.
Lihat juga
Berlaku untuk
GetParentRow(String, DataRowVersion)
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
- Sumber:
- DataRow.cs
Mendapatkan baris induk dari DataRow menggunakan yang ditentukan RelationName dari DataRelation, dan 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
Parameter
- relationName
- String
RelationName dari DataRelation.
- version
- DataRowVersion
Salah DataRowVersion satu nilai.
Mengembalikan
Induk DataRow baris saat ini.
Pengecualian
Relasi dan baris bukan milik tabel yang sama.
relation
adalah null
.
Baris anak memiliki beberapa orang tua.
Baris bukan milik tabel.
Baris tidak memiliki yang diminta DataRowVersion.
Contoh
Contoh berikut menggunakan GetParentRow untuk mencetak nilai dari setiap baris induk masing-masing DataRow dalam 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
Keterangan
DataSetDalam , kumpulan semua objek induk DataRelation untuk himpunan data dikembalikan oleh GetParentRows metode .
DataTable juga berisi kumpulan DataRelation objek, yang dikembalikan oleh ParentRelations properti .
HasVersion Gunakan properti untuk menentukan apakah DataRowVersion yang Anda inginkan ada.