MutableEntityTypeExtensions.GetDerivedForeignKeys(IMutableEntityType) Method

Definition

Gets all foreign keys declared on the types derived from the given IMutableEntityType.

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.

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

Parameters

entityType
IMutableEntityType

The entity type.

Returns

Derived foreign keys.

Applies to