Share via


ScaffoldingModelExtensions.IsLeftNavigation(ISkipNavigation) Method

Definition

Gets a value indicating whether the specified skip navigation represents the left side of the relationship.

public static bool IsLeftNavigation (this Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation skipNavigation);
static member IsLeftNavigation : Microsoft.EntityFrameworkCore.Metadata.ISkipNavigation -> bool
<Extension()>
Public Function IsLeftNavigation (skipNavigation As ISkipNavigation) As Boolean

Parameters

skipNavigation
ISkipNavigation

The skip navigation to check.

Returns

true if it represents the left side.

Remarks

The designation of left and right is arbitrary but deterministic. This method exists primarily to avoid configuring the same many-to-many relationship from both of its ends.

Applies to