RuntimeEntityType.IEntityType.FindSkipNavigation Method

Definition

Overloads

IEntityType.FindSkipNavigation(String)

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

IEntityType.FindSkipNavigation(MemberInfo)

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

IEntityType.FindSkipNavigation(String)

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

[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation? IEntityType.FindSkipNavigation (string name);
[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation IEntityType.FindSkipNavigation (string name);
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IEntityType.FindSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation
override this.Microsoft.EntityFrameworkCore.Metadata.IEntityType.FindSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation
Function FindSkipNavigation (name As String) As ISkipNavigation Implements IEntityType.FindSkipNavigation

Parameters

name
String

The name of the navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Implements

Attributes

Applies to

IEntityType.FindSkipNavigation(MemberInfo)

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

[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation? IEntityType.FindSkipNavigation (System.Reflection.MemberInfo memberInfo);
[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation IEntityType.FindSkipNavigation (System.Reflection.MemberInfo memberInfo);
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IEntityType.FindSkipNavigation : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation
override this.Microsoft.EntityFrameworkCore.Metadata.IEntityType.FindSkipNavigation : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation
Function FindSkipNavigation (memberInfo As MemberInfo) As ISkipNavigation Implements IEntityType.FindSkipNavigation

Parameters

memberInfo
MemberInfo

The navigation property on the entity class.

Returns

The navigation property, or null if none is found.

Implements

Attributes

Applies to