UniqueConstraint.IsPrimaryKey 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
제약 조건이 기본 키에 있는지 여부를 나타내는 값을 가져옵니다.
public:
property bool IsPrimaryKey { bool get(); };
public bool IsPrimaryKey { get; }
[System.Data.DataSysDescription("KeyConstraintIsPrimaryKeyDescr")]
public bool IsPrimaryKey { get; }
member this.IsPrimaryKey : bool
[<System.Data.DataSysDescription("KeyConstraintIsPrimaryKeyDescr")>]
member this.IsPrimaryKey : bool
Public ReadOnly Property IsPrimaryKey As Boolean
속성 값
제약 조건이 기본 키에 있으면 true
이고, 그렇지 않으면 false
입니다.
- 특성
예제
다음 예에서는 속성을 확인합니다 IsPrimaryKey .
Private Sub GetPrimaryKey()
Dim dataRelation As DataRelation
Dim uniqueConstraint As UniqueConstraint
' Get a DataRelation from a DataSet.
dataRelation = DataSet1.Relations("CustomerOrders")
' Get the ParentKeyConstraint.
uniqueConstraint = dataRelation.ParentKeyConstraint
' Test if the IsPrimaryKey is true.
If uniqueConstraint.IsPrimaryKey Then
Console.WriteLine("IsPrimaryKey=True")
Else
Console.WriteLine("IsPrimaryKey=False")
End If
End Sub
설명
테이블에는 일반적으로 모든 행이 고유하도록 하는 기본 키가 포함됩니다. 일부 테이블에서는 기본 키가 둘 이상의 열로 구성될 수 있습니다. 예를 들어 이름이 포함된 테이블의 기본 키는 이름과 성으로 구성될 수도 있습니다. 둘 이상의 열이 있는 기본 키를 만들려면 Columns 속성을 DataColumn 개체의 배열로 설정합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET