EntityTypeExtensions.FindKey(IEntityType, 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.IKey FindKey (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member FindKey : Microsoft.EntityFrameworkCore.Metadata.IEntityType * Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Metadata.IKey
<Extension()>
Public Function FindKey (entityType As IEntityType, property As IProperty) As IKey

Parameters

entityType
IEntityType

The entity type.

property
IProperty

The property that the key is defined on.

Returns

The key, or null if none is defined.

Applies to