IsPrimaryKey Property

MetaDataMember.IsPrimaryKey Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets whether this member is part of the type's identity.

Namespace:  System.Data.Linq.Mapping
Assembly:  System.Data.Linq (in System.Data.Linq.dll)

public abstract bool IsPrimaryKey { get; }

Property Value

Type: System.Boolean
true if this member is part of the type's identity; otherwise, false.

If this property is true, the class member represents a column that is part of the table’s unique key. More than one member of the class can have this property set to true for a key that is a composite of the associated columns. For an entity class, at least one member must have this attribute and should be mapped to the primary key or a unique key in the corresponding table or view. Otherwise, LINQ to SQL considers instances of the class as read-only for the purpose of submitting changes to the database.

The set of columns identified with IsPrimaryKey are not required to be the primary key. They simply denote a set that uniquely identifies the entity. Common alternatives include clustering index columns or other unique key columns.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft