MutablePropertyExtensions.SetBeforeSaveBehavior 方法

定义

获取或设置一个值,该值指示在实体保存到数据库之前是否可以修改此属性。

如果 Throw为 ,则如果在此属性处于 Added 状态时将值分配给此属性,则会引发异常。

如果 Ignore为 ,则在处于 状态时 Added ,将忽略任何值集。

public static void SetBeforeSaveBehavior (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, Microsoft.EntityFrameworkCore.Metadata.PropertySaveBehavior? beforeSaveBehavior);
static member SetBeforeSaveBehavior : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * Nullable<Microsoft.EntityFrameworkCore.Metadata.PropertySaveBehavior> -> unit
<Extension()>
Public Sub SetBeforeSaveBehavior (property As IMutableProperty, beforeSaveBehavior As Nullable(Of PropertySaveBehavior))

参数

property
IMutableProperty

属性。

beforeSaveBehavior
Nullable<PropertySaveBehavior>

一个值,该值指示在实体保存到数据库之前是否可以修改此属性。

适用于