IMutableEntityType.SetNavigationAccessMode Method

Definition

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

public virtual void SetNavigationAccessMode (Microsoft.EntityFrameworkCore.PropertyAccessMode? propertyAccessMode);
abstract member SetNavigationAccessMode : Nullable<Microsoft.EntityFrameworkCore.PropertyAccessMode> -> unit
override this.SetNavigationAccessMode : Nullable<Microsoft.EntityFrameworkCore.PropertyAccessMode> -> unit
Public Overridable Sub SetNavigationAccessMode (propertyAccessMode As Nullable(Of PropertyAccessMode))

Parameters

propertyAccessMode
Nullable<PropertyAccessMode>

The PropertyAccessMode, or null to clear the mode set.

Remarks

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.

Applies to