IUpdateEntry.GetCurrentValue 方法

定义

重载

GetCurrentValue(IPropertyBase)

获取分配给 属性的值。

GetCurrentValue<TProperty>(IPropertyBase)

获取分配给 属性的值。

GetCurrentValue(IPropertyBase)

获取分配给 属性的值。

public object GetCurrentValue (Microsoft.EntityFrameworkCore.Metadata.IPropertyBase propertyBase);
public object? GetCurrentValue (Microsoft.EntityFrameworkCore.Metadata.IPropertyBase propertyBase);
abstract member GetCurrentValue : Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> obj
Public Function GetCurrentValue (propertyBase As IPropertyBase) As Object

参数

propertyBase
IPropertyBase

要获取其值的属性。

返回

属性的值。

适用于

GetCurrentValue<TProperty>(IPropertyBase)

获取分配给 属性的值。

public TProperty GetCurrentValue<TProperty> (Microsoft.EntityFrameworkCore.Metadata.IPropertyBase propertyBase);
abstract member GetCurrentValue : Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> 'Property
Public Function GetCurrentValue(Of TProperty) (propertyBase As IPropertyBase) As TProperty

类型参数

TProperty

属性的类型。

参数

propertyBase
IPropertyBase

要获取其值的属性。

返回

TProperty

属性的值。

适用于