DataTable.ParentRelations Właściwość

Definicja

Pobiera kolekcję relacji nadrzędnych dla tego DataTableelementu .

C#
[System.ComponentModel.Browsable(false)]
public System.Data.DataRelationCollection ParentRelations { get; }
C#
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("DataTableParentRelationsDescr")]
public System.Data.DataRelationCollection ParentRelations { get; }

Wartość właściwości

Obiekt DataRelationCollection zawierający relacje nadrzędne dla tabeli. Pusta kolekcja jest zwracana, jeśli nie DataRelation istnieją żadne obiekty.

Atrybuty

Przykłady

W poniższym przykładzie użyto właściwości , ParentRelations aby zwrócić każdy element nadrzędny DataRelation w obiekcie DataTable. Każda relacja jest następnie używana jako argument w GetParentRows metodzie DataRow , aby zwrócić tablicę wierszy. Wartość każdej kolumny w wierszu jest następnie drukowana.

C#
private void GetChildRowsFromDataRelation(DataTable table)
{
    DataRow[] rowArray;
    foreach(DataRelation relation in table.ParentRelations)
    {
        foreach(DataRow row in table.Rows)
        {
            rowArray = row.GetParentRows(relation);
            // Print values of rows.
            for(int i = 0; i < rowArray.Length; i++)
            {
                foreach(DataColumn column in table.Columns)
                {
                    Console.WriteLine(rowArray[i][column]);
                }
            }
        }
    }
}

Dotyczy

Produkt Wersje
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Zobacz też