DbPropertyValues.GetValue<TValue> 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
获取属性的值,正如使用索引属性 getter 但将类型设置为泛型参数的类型一样。 这在使用嵌套字典以避免编写包含大量强制转换的表达式时特别有用。
命名空间: System.Data.Entity.Infrastructure
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Function GetValue(Of TValue) ( _
propertyName As String _
) As TValue
用法
Dim instance As DbPropertyValues
Dim propertyName As String
Dim returnValue As TValue
returnValue = instance.GetValue(propertyName)
public TValue GetValue<TValue>(
string propertyName
)
public:
generic<typename TValue>
TValue GetValue(
String^ propertyName
)
member GetValue :
propertyName:string -> 'TValue
JScript does not support generic types and methods.
类型参数
- TValue
属性的类型。
参数
- propertyName
类型:System.String
属性的名称。
返回值
类型:TValue
属性的值。