Share via


IConventionTypeBaseBuilder.UsePropertyAccessMode Method

Definition

Sets the PropertyAccessMode to use for all properties of this type.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTypeBaseBuilder? UsePropertyAccessMode (Microsoft.EntityFrameworkCore.PropertyAccessMode? propertyAccessMode, bool fromDataAnnotation = false);
abstract member UsePropertyAccessMode : Nullable<Microsoft.EntityFrameworkCore.PropertyAccessMode> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTypeBaseBuilder
Public Function UsePropertyAccessMode (propertyAccessMode As Nullable(Of PropertyAccessMode), Optional fromDataAnnotation As Boolean = false) As IConventionTypeBaseBuilder

Parameters

propertyAccessMode
Nullable<PropertyAccessMode>

The PropertyAccessMode to use for properties of this type. null to reset to default.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance so that multiple configuration calls can be chained.

Applies to