DbPropertyValues.GetValue<TValue>(String) 方法

定义

获取属性的值,正如使用索引属性 getter 但将类型设置为泛型参数的类型一样。 这在使用嵌套字典以避免编写包含大量强制转换的表达式时特别有用。

public TValue GetValue<TValue> (string propertyName);
member this.GetValue : string -> 'Value
Public Function GetValue(Of TValue) (propertyName As String) As TValue

类型参数

TValue

属性的类型。

参数

propertyName
String

属性的名称。

返回

TValue

该属性的值。

适用于