PropertyValues.GetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetValue<TValue>(IProperty) |
获取属性的值,正如使用索引属性 getter 但将类型设置为泛型参数的类型一样。 |
GetValue<TValue>(String) |
获取属性的值,正如使用索引属性 getter 但将类型设置为泛型参数的类型一样。 |
GetValue<TValue>(IProperty)
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
获取属性的值,正如使用索引属性 getter 但将类型设置为泛型参数的类型一样。
public abstract TValue GetValue<TValue> (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member GetValue : Microsoft.EntityFrameworkCore.Metadata.IProperty -> 'Value
Public MustOverride Function GetValue(Of TValue) (property As IProperty) As TValue
类型参数
- TValue
属性的类型。
参数
- property
- IProperty
属性。
返回
TValue
该属性的值。
注解
有关详细信息和示例,请参阅 在 EF Core 中访问跟踪的实体 。
适用于
GetValue<TValue>(String)
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
- Source:
- PropertyValues.cs
获取属性的值,正如使用索引属性 getter 但将类型设置为泛型参数的类型一样。
public abstract TValue GetValue<TValue> (string propertyName);
abstract member GetValue : string -> 'Value
Public MustOverride Function GetValue(Of TValue) (propertyName As String) As TValue
类型参数
- TValue
属性的类型。
参数
- propertyName
- String
属性名称。
返回
TValue
该属性的值。
注解
有关详细信息和示例,请参阅 在 EF Core 中访问跟踪的实体 。