IMutableEntityType.GetDeclaredKeys Method

Definition

Gets all keys declared on the given IReadOnlyEntityType.

public virtual System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IMutableKey> GetDeclaredKeys ();
abstract member GetDeclaredKeys : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableKey>
override this.GetDeclaredKeys : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableKey>
Public Overridable Function GetDeclaredKeys () As IEnumerable(Of IMutableKey)

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