RuntimeEntityType.IReadOnlyEntityType.FindSkipNavigation Method

Definition

Overloads

IReadOnlyEntityType.FindSkipNavigation(String)

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

IReadOnlyEntityType.FindSkipNavigation(MemberInfo)

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

IReadOnlyEntityType.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.IReadOnlySkipNavigation? IReadOnlyEntityType.FindSkipNavigation (string name);
[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation IReadOnlyEntityType.FindSkipNavigation (string name);
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType.FindSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation
override this.Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType.FindSkipNavigation : string -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation
Function FindSkipNavigation (name As String) As IReadOnlySkipNavigation Implements IReadOnlyEntityType.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

IReadOnlyEntityType.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.IReadOnlySkipNavigation? IReadOnlyEntityType.FindSkipNavigation (System.Reflection.MemberInfo memberInfo);
[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation IReadOnlyEntityType.FindSkipNavigation (System.Reflection.MemberInfo memberInfo);
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType.FindSkipNavigation : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation
override this.Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType.FindSkipNavigation : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlySkipNavigation
Function FindSkipNavigation (memberInfo As MemberInfo) As IReadOnlySkipNavigation Implements IReadOnlyEntityType.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