MutableEntityTypeExtensions.GetDeclaredForeignKeys(IMutableEntityType) Method

Definition

Gets all foreign keys declared on the given IMutableEntityType.

This method does not return foreign keys declared on base types. It is useful when iterating over all entity types to avoid processing the same foreign key more than once. Use GetForeignKeys() to also return foreign keys declared on base types.

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

Parameters

entityType
IMutableEntityType

The entity type.

Returns

Declared foreign keys.

Applies to