ConventionEntityTypeExtensions.GetDeclaredKeys(IConventionEntityType) Method

Definition

Gets all keys declared on the given IEntityType.

This method does not return keys declared on base types. It is useful when iterating over all entity types to avoid processing the same key more than once. Use GetKeys() to also return keys declared on base types.

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IConventionKey> GetDeclaredKeys (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType);
static member GetDeclaredKeys : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IConventionKey>
<Extension()>
Public Function GetDeclaredKeys (entityType As IConventionEntityType) As IEnumerable(Of IConventionKey)

Parameters

entityType
IConventionEntityType

The entity type.

Returns

Declared keys.

Applies to