IMutableTypeBase.SetPropertyAccessMode Method

Definition

Sets the PropertyAccessMode to use for properties and navigations of this type.

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

Parameters

propertyAccessMode
Nullable<PropertyAccessMode>

The PropertyAccessMode, or null to clear the mode set.

Remarks

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

Applies to