IConventionEntityType.FindDeclaredSkipNavigation(String) Method

Definition

Gets a skip navigation property on this entity type. Does not return skip navigation properties defined on a base type. Returns null if no skip navigation property is found.

public virtual Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation FindDeclaredSkipNavigation (string name);
public virtual Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation? FindDeclaredSkipNavigation (string name);
abstract member FindDeclaredSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation
override this.FindDeclaredSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.IConventionSkipNavigation
Public Overridable Function FindDeclaredSkipNavigation (name As String) As IConventionSkipNavigation

Parameters

name
String

The name of the navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Applies to