KeyExtensions.GetReferencingForeignKeys(IKey) Method

Definition

Gets all foreign keys that target a given primary or alternate key.

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IForeignKey> GetReferencingForeignKeys (this Microsoft.EntityFrameworkCore.Metadata.IKey key);
static member GetReferencingForeignKeys : Microsoft.EntityFrameworkCore.Metadata.IKey -> seq<Microsoft.EntityFrameworkCore.Metadata.IForeignKey>
<Extension()>
Public Function GetReferencingForeignKeys (key As IKey) As IEnumerable(Of IForeignKey)

Parameters

key
IKey

The key to find the foreign keys for.

Returns

The foreign keys that reference the given key.

Applies to