DataRow.SetParentRow 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataRow의 부모 행을 설정합니다.
오버로드
SetParentRow(DataRow) | |
SetParentRow(DataRow, DataRelation) |
지정된 새 부모 DataRow와 DataRow을 가지는 DataRelation의 부모 행을 설정합니다. |
SetParentRow(DataRow)
- Source:
- DataRow.cs
- Source:
- DataRow.cs
- Source:
- DataRow.cs
public:
void SetParentRow(System::Data::DataRow ^ parentRow);
public void SetParentRow (System.Data.DataRow? parentRow);
public void SetParentRow (System.Data.DataRow parentRow);
member this.SetParentRow : System.Data.DataRow -> unit
Public Sub SetParentRow (parentRow As DataRow)
매개 변수
적용 대상
SetParentRow(DataRow, DataRelation)
- Source:
- DataRow.cs
- Source:
- DataRow.cs
- Source:
- DataRow.cs
지정된 새 부모 DataRow와 DataRow을 가지는 DataRelation의 부모 행을 설정합니다.
public:
void SetParentRow(System::Data::DataRow ^ parentRow, System::Data::DataRelation ^ relation);
public void SetParentRow (System.Data.DataRow? parentRow, System.Data.DataRelation? relation);
public void SetParentRow (System.Data.DataRow parentRow, System.Data.DataRelation relation);
member this.SetParentRow : System.Data.DataRow * System.Data.DataRelation -> unit
Public Sub SetParentRow (parentRow As DataRow, relation As DataRelation)
매개 변수
- relation
- DataRelation
사용할 관계 DataRelation입니다.
예외
행 중의 하나가 테이블에 속하지 않는 경우
행 중 하나가 null
인 경우
관계가 DataRelationCollection 개체의 DataSet에 속하지 않은 경우
관계의 자식 DataTable이 이 행이 속한 테이블이 아닌 경우
예제
다음 예제에서는 특정 자식 행의 부모 행을 설정합니다.
Private Sub SetParent()
' Get a ParentRow and a ChildRow from a DataSet.
Dim childRow As DataRow = _
DataSet1.Tables("Orders").Rows(1)
Dim parentRow As DataRow = _
DataSet1.Tables("Customers").Rows(20)
' Set the parent row of a DataRelation.
childRow.SetParentRow(parentRow, _
DataSet1.Relations("CustomerOrders"))
End Sub
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET