DbPropertyValues.GetValue<TValue>(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取属性的值,正如使用索引属性 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
该属性的值。