PropertyExtensions.IsPrimaryKey(IProperty) Method

Definition

Caution

Use IReadOnlyProperty.IsPrimaryKey

Gets a value indicating whether this property is used as the primary key (or part of a composite primary key).

public static bool IsPrimaryKey (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
[System.Obsolete("Use IReadOnlyProperty.IsPrimaryKey")]
public static bool IsPrimaryKey (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member IsPrimaryKey : Microsoft.EntityFrameworkCore.Metadata.IProperty -> bool
[<System.Obsolete("Use IReadOnlyProperty.IsPrimaryKey")>]
static member IsPrimaryKey : Microsoft.EntityFrameworkCore.Metadata.IProperty -> bool
<Extension()>
Public Function IsPrimaryKey (property As IProperty) As Boolean

Parameters

property
IProperty

The property to check.

Returns

true if the property is used as the primary key, otherwise false.

Attributes

Applies to