Share via


RuntimeEntityType.FindSkipNavigation(String) Method

Definition

Gets a skip navigation property on this entity type. Returns null if no skip navigation property is found.

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

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