DataRow.GetParentRow Metodo

Definizione

Ottiene la riga padre di un oggetto DataRow.

Overload

GetParentRow(DataRelation)

Ottiene la riga padre di un oggetto DataRow utilizzando l'oggetto DataRelation specificato.

GetParentRow(String)

Ottiene la riga padre di un oggetto DataRow utilizzando la proprietà RelationName specificata di un oggetto DataRelation.

GetParentRow(DataRelation, DataRowVersion)

Ottiene la riga padre di un oggetto DataRow utilizzando gli oggetti DataRelation e DataRowVersion specificati.

GetParentRow(String, DataRowVersion)

Ottiene la riga padre di un oggetto DataRow utilizzando la proprietà RelationName specificata di un oggetto DataRelation e DataRowVersion.

GetParentRow(DataRelation)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

Ottiene la riga padre di un oggetto DataRow utilizzando l'oggetto DataRelation specificato.

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

Parametri

relation
DataRelation

Oggetto DataRelation da usare.

Restituisce

Oggetto DataRow padre della riga corrente.

Eccezioni

Il parametro relation non appartiene all'oggetto DataTable.

-oppure-

La riga è null.

Una riga figlio ha più elementi padre.

Questa riga non appartiene alla tabella figlio dell'oggetto DataRelation.

La riga non appartiene alla tabella.

Esempio

Nell'esempio seguente viene usato per GetParentRow restituire gli oggetti figlio per ogni elemento figlio DataRowDataRelation in un DataTableoggetto . Il valore di ogni colonna nella riga viene quindi stampato.

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

Commenti

In un DataSetoggetto , la raccolta di tutti gli oggetti padre DataRelation per il GetParentRows set di dati viene restituita dal metodo .

Contiene DataTable anche una raccolta di DataRelation oggetti restituiti dalla ParentRelations proprietà .

Vedi anche

Si applica a

GetParentRow(String)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

Ottiene la riga padre di un oggetto DataRow utilizzando la proprietà RelationName specificata di un oggetto 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

Parametri

relationName
String

Proprietà RelationName di un oggetto DataRelation.

Restituisce

Oggetto DataRow padre della riga corrente.

Eccezioni

La relazione e la riga non appartengono alla stessa tabella.

Una riga figlio ha più elementi padre.

La riga non appartiene alla tabella.

Esempio

Nell'esempio seguente viene usato per GetParentRow stampare un valore da ogni riga padre di ogni DataRow elemento in un DataTableoggetto .

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

Commenti

In un DataSetoggetto , la raccolta di tutti gli oggetti padre DataRelation per il GetParentRows set di dati viene restituita dal metodo .

Contiene DataTable anche una raccolta di DataRelation oggetti restituiti dalla ParentRelations proprietà .

Si applica a

GetParentRow(DataRelation, DataRowVersion)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

Ottiene la riga padre di un oggetto DataRow utilizzando gli oggetti DataRelation e DataRowVersion specificati.

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

Parametri

relation
DataRelation

Oggetto DataRelation da usare.

version
DataRowVersion

Uno dei valori di DataRowVersion che specifica la versione dei dati da ottenere.

Restituisce

Oggetto DataRow padre della riga corrente.

Eccezioni

La riga è null.

-oppure-

Il parametro relation non appartiene alle relazioni padre di questa tabella.

Una riga figlio ha più elementi padre.

La tabella figlio della relazione non è la tabella a cui la riga appartiene.

La riga non appartiene alla tabella.

La riga non dispone di questa versione dei dati.

Esempio

Nell'esempio seguente viene usato per GetParentRow restituire gli oggetti figlio per ogni elemento figlio DataRowDataRelation in un DataTableoggetto . Il valore di ogni colonna nella riga viene quindi stampato.

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

Commenti

In un DataSetoggetto , la raccolta di tutti gli oggetti padre DataRelation per il GetParentRows set di dati viene restituita dal metodo .

Contiene DataTable anche una raccolta di DataRelation oggetti restituiti dalla ParentRelations proprietà .

Utilizzare la proprietà per determinare se esiste l'oggetto HasVersionDataRowVersion desiderato.

Vedi anche

Si applica a

GetParentRow(String, DataRowVersion)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

Ottiene la riga padre di un oggetto DataRow utilizzando la proprietà RelationName specificata di un oggetto DataRelation e 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

Parametri

relationName
String

Proprietà RelationName di un oggetto DataRelation.

version
DataRowVersion

Uno dei valori di DataRowVersion.

Restituisce

Oggetto DataRow padre della riga corrente.

Eccezioni

La relazione e la riga non appartengono alla stessa tabella.

L'elemento relation è null.

Una riga figlio ha più elementi padre.

La riga non appartiene alla tabella.

La riga non dispone dell'oggetto DataRowVersion richiesto.

Esempio

Nell'esempio seguente viene usato per GetParentRow stampare un valore da ogni riga padre di ogni DataRow elemento in un DataTableoggetto .

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

Commenti

In un DataSetoggetto , la raccolta di tutti gli oggetti padre DataRelation per il GetParentRows set di dati viene restituita dal metodo .

Contiene DataTable anche una raccolta di DataRelation oggetti restituiti dalla ParentRelations proprietà .

Utilizzare la proprietà per determinare se esiste l'oggetto HasVersionDataRowVersion desiderato.

Si applica a