IReadOnlyEntityType.GetDerivedForeignKeys Method

Definition

Gets all foreign keys declared on the types derived from this entity type.

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyForeignKey> GetDerivedForeignKeys ();
abstract member GetDerivedForeignKeys : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyForeignKey>
Public Function GetDerivedForeignKeys () As IEnumerable(Of IReadOnlyForeignKey)

Returns

Derived foreign keys.

Remarks

This method does not return foreign keys declared on the given entity type itself. Use GetForeignKeys() to return foreign keys declared on this and base entity typed types.

Applies to