MutableEntityTypeExtensions.SetPrimaryKey Method

Definition

Sets the primary key for this entity type.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableKey SetPrimaryKey (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property);
static member SetPrimaryKey : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * Microsoft.EntityFrameworkCore.Metadata.IMutableProperty -> Microsoft.EntityFrameworkCore.Metadata.IMutableKey
<Extension()>
Public Function SetPrimaryKey (entityType As IMutableEntityType, property As IMutableProperty) As IMutableKey

Parameters

entityType
IMutableEntityType

The entity type to set the key on.

property
IMutableProperty

The primary key property.

Returns

The newly created key.

Applies to