MutableEntityTypeExtensions.FindKey(IMutableEntityType, IProperty) Method

Definition

Gets the primary or alternate key that is defined on the given property. Returns null if no key is defined for the given property.

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

Parameters

entityType
IMutableEntityType

The entity type.

property
IProperty

The property that the key is defined on.

Returns

The key, or null if none is defined.

Applies to