EntityTypeExtensions.GetDerivedForeignKeys(IEntityType) Method

Definition

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

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.IForeignKey> GetDerivedForeignKeys (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetDerivedForeignKeys : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IForeignKey>
<Extension()>
Public Function GetDerivedForeignKeys (entityType As IEntityType) As IEnumerable(Of IForeignKey)

Parameters

entityType
IEntityType

The entity type.

Returns

Derived foreign keys.

Applies to