IEntityType.GetDeclaredKeys Method

Definition

Gets all keys declared on the given IReadOnlyEntityType.

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 System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IKey> GetDeclaredKeys ();
abstract member GetDeclaredKeys : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IKey>
Public Function GetDeclaredKeys () As IEnumerable(Of IKey)

Returns

IEnumerable<IKey>

Declared keys.

Applies to