MutableTypeBaseExtensions.SetNavigationAccessMode Method

Definition

Sets the PropertyAccessMode to use for navigations of this entity type.

Note that individual navigations can override this access mode. The value set here will be used for any navigation for which no override has been specified.

public static void SetNavigationAccessMode (this Microsoft.EntityFrameworkCore.Metadata.IMutableTypeBase entityType, Microsoft.EntityFrameworkCore.PropertyAccessMode? propertyAccessMode);
static member SetNavigationAccessMode : Microsoft.EntityFrameworkCore.Metadata.IMutableTypeBase * Nullable<Microsoft.EntityFrameworkCore.PropertyAccessMode> -> unit
<Extension()>
Public Sub SetNavigationAccessMode (entityType As IMutableTypeBase, propertyAccessMode As Nullable(Of PropertyAccessMode))

Parameters

entityType
IMutableTypeBase

The type for which to set the access mode.

propertyAccessMode
Nullable<PropertyAccessMode>

The PropertyAccessMode, or null to clear the mode set.

Applies to