IEntityType.GetDeclaredKeys Method

Definition

Gets all keys declared on the given IReadOnlyEntityType.

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

Declared keys.

Remarks

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.

Applies to