IEntityType.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.ISkipNavigation FindDeclaredSkipNavigation (string name);
public virtual Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation? FindDeclaredSkipNavigation (string name);
abstract member FindDeclaredSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation
override this.FindDeclaredSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation
Public Overridable Function FindDeclaredSkipNavigation (name As String) As ISkipNavigation

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