DataRow.GetParentRows 方法

定义

获取 DataRow 的父行。

重载

GetParentRows(DataRelation, DataRowVersion)

使用指定的 DataRelationDataRowVersion 获取 DataRow 的父行。

GetParentRows(DataRelation)

使用指定的 DataRelation 获取 DataRow 的父行。

GetParentRows(String)

使用 DataRelation 的指定 RelationName 获取 DataRow 的父行。

GetParentRows(String, DataRowVersion)

使用 DataRelation 的指定 RelationNameDataRowVersion 获取 DataRow 的父行。

GetParentRows(DataRelation, DataRowVersion)

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

使用指定的 DataRelationDataRowVersion 获取 DataRow 的父行。

public:
 cli::array <System::Data::DataRow ^> ^ GetParentRows(System::Data::DataRelation ^ relation, System::Data::DataRowVersion version);
public System.Data.DataRow[] GetParentRows (System.Data.DataRelation? relation, System.Data.DataRowVersion version);
public System.Data.DataRow[] GetParentRows (System.Data.DataRelation relation, System.Data.DataRowVersion version);
member this.GetParentRows : System.Data.DataRelation * System.Data.DataRowVersion -> System.Data.DataRow[]
Public Function GetParentRows (relation As DataRelation, version As DataRowVersion) As DataRow()

参数

relation
DataRelation

要使用的 DataRelation

version
DataRowVersion

DataRowVersion 值之一,指定要获取的数据的版本。

返回

一个 DataRow 对象数组,或长度为零的数组。

例外

DataRelation 不属于此行的 DataSet

该行为 null

此关系的子表不是该行所属的表。

该行不属于 DataTable

该行没有请求的 DataRowVersion

示例

以下示例使用 GetParentRows 返回 中每个子DataRow项的DataTableDataRelation对象。 然后打印行中每列的值。

Private Sub GetChildRowsFromDataRelation(table As DataTable, ver As DataRowVersion)
    Dim relation As DataRelation
    Dim arrRows() As DataRow
    Dim row As DataRow
    Dim i As Integer
    Dim column As DataColumn 
 
    For Each relation In table.ParentRelations
      For Each row In table.Rows
          arrRows = row.GetParentRows(relation, ver)
          ' Print values of rows.
          For i = 0 To arrRows.GetUpperBound(0)
             For Each column in table.Columns
                Console.WriteLine(arrRows(i)(column.ColumnName))
             Next column
          Next i
       Next row
    Next relation
End Sub

注解

在 中 DataSet,数据集的所有父 DataRelation 对象的集合由 GetParentRows 方法返回。

DataTable还包含 由 ParentRelations 属性返回的 DataRelation 对象的集合。

HasVersion使用 属性确定所需的 是否存在DataRowVersion

另请参阅

适用于

GetParentRows(DataRelation)

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

使用指定的 DataRelation 获取 DataRow 的父行。

public:
 cli::array <System::Data::DataRow ^> ^ GetParentRows(System::Data::DataRelation ^ relation);
public System.Data.DataRow[] GetParentRows (System.Data.DataRelation? relation);
public System.Data.DataRow[] GetParentRows (System.Data.DataRelation relation);
member this.GetParentRows : System.Data.DataRelation -> System.Data.DataRow[]
Public Function GetParentRows (relation As DataRelation) As DataRow()

参数

relation
DataRelation

要使用的 DataRelation

返回

一个 DataRow 对象数组,或长度为零的数组。

例外

DataRelation 不属于此行的 DataSet

该行为 null

此关系的子表不是该行所属的表。

该行不属于 DataTable

示例

以下示例使用 GetParentRows 返回 中每个子DataRow项的DataTableDataRelation对象。 然后打印行中每列的值。

Private Sub GetChildRowsFromDataRelation(table As DataTable)
    Dim relation As DataRelation
    Dim arrRows() As DataRow
    Dim row As DataRow
    Dim i As Integer
    Dim column As DataColumn 
 
    For Each relation In table.ParentRelations
      For Each row In table.Rows
          arrRows = row.GetParentRows(relation)
          ' Print values of rows.
          For i = 0 To arrRows.GetUpperBound(0)
             For Each column in table.Columns
                Console.WriteLine(arrRows(i)(column.ColumnName))
             Next column
          Next i
       Next row
    Next relation
 End Sub

注解

在 中 DataSet,数据集的所有父 DataRelation 对象的集合由 GetParentRows 方法返回。

DataTable还包含 由 ParentRelations 属性返回的 DataRelation 对象的集合。

另请参阅

适用于

GetParentRows(String)

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

使用 DataRelation 的指定 RelationName 获取 DataRow 的父行。

public:
 cli::array <System::Data::DataRow ^> ^ GetParentRows(System::String ^ relationName);
public System.Data.DataRow[] GetParentRows (string? relationName);
public System.Data.DataRow[] GetParentRows (string relationName);
member this.GetParentRows : string -> System.Data.DataRow[]
Public Function GetParentRows (relationName As String) As DataRow()

参数

relationName
String

DataRelationRelationName

返回

一个 DataRow 对象数组,或长度为零的数组。

例外

关系和行不属于同一个表。

此行不属于该表。

注解

在 中 DataSet,数据集的所有父 DataRelation 对象的集合由 GetParentRows 方法返回。

DataTable还包含 由 ParentRelations 属性返回的 DataRelation 对象的集合。

适用于

GetParentRows(String, DataRowVersion)

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

使用 DataRelation 的指定 RelationNameDataRowVersion 获取 DataRow 的父行。

public:
 cli::array <System::Data::DataRow ^> ^ GetParentRows(System::String ^ relationName, System::Data::DataRowVersion version);
public System.Data.DataRow[] GetParentRows (string? relationName, System.Data.DataRowVersion version);
public System.Data.DataRow[] GetParentRows (string relationName, System.Data.DataRowVersion version);
member this.GetParentRows : string * System.Data.DataRowVersion -> System.Data.DataRow[]
Public Function GetParentRows (relationName As String, version As DataRowVersion) As DataRow()

参数

relationName
String

DataRelationRelationName

version
DataRowVersion

DataRowVersion 值之一,指定要获取的数据的版本。 可能值为 DefaultOriginalCurrentProposed

返回

一个 DataRow 对象数组,或长度为零的数组。

例外

关系和行不属于同一个表。

relationnull

此行不属于该表。

该行没有请求的 DataRowVersion

注解

在 中 DataSet,数据集的所有父 DataRelation 对象的集合由 GetParentRows 方法返回。

DataTable还包含 由 ParentRelations 属性返回的 DataRelation 对象的集合。

HasVersion使用 属性确定所需的 是否存在DataRowVersion

适用于