ConventionEntityTypeExtensions.GetDeclaredForeignKeys Method

Definition

Gets all foreign keys declared on the given IConventionEntityType.

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

Parameters

entityType
IConventionEntityType

The entity type.

Returns

Declared foreign keys.

Applies to