共用方式為


MaterializationInterceptionData.GetPropertyValue 方法

定義

多載

GetPropertyValue(IPropertyBase)

取得指定屬性的屬性值。

GetPropertyValue(String)

取得具有指定名稱之屬性的屬性值。

GetPropertyValue<T>(IPropertyBase)

取得指定屬性的屬性值。

GetPropertyValue<T>(String)

取得具有指定名稱之屬性的屬性值。

GetPropertyValue(IPropertyBase)

來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs

取得指定屬性的屬性值。

public object? GetPropertyValue (Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property);
member this.GetPropertyValue : Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> obj
Public Function GetPropertyValue (property As IPropertyBase) As Object

參數

property
IPropertyBase

屬性。

傳回

屬性值。

備註

這個方法的非泛型多載一律會導致基本型別或實值型別屬性值 Boxed 到堆積配置的 物件中。

適用於

GetPropertyValue(String)

來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs

取得具有指定名稱之屬性的屬性值。

public object? GetPropertyValue (string propertyName);
member this.GetPropertyValue : string -> obj
Public Function GetPropertyValue (propertyName As String) As Object

參數

propertyName
String

屬性名稱。

傳回

屬性值。

備註

這個方法的非泛型多載一律會導致基本型別或實值型別屬性值 Boxed 到堆積配置的 物件中。

適用於

GetPropertyValue<T>(IPropertyBase)

來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs

取得指定屬性的屬性值。

public T GetPropertyValue<T> (Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property);
member this.GetPropertyValue : Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> 'T
Public Function GetPropertyValue(Of T) (property As IPropertyBase) As T

類型參數

T

參數

property
IPropertyBase

屬性。

傳回

T

屬性值。

備註

這個方法的泛型多載不會將基本或實值型別屬性值 Box 化成堆積配置的 物件。

適用於

GetPropertyValue<T>(String)

來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs
來源:
MaterializationInterceptionData.cs

取得具有指定名稱之屬性的屬性值。

public T GetPropertyValue<T> (string propertyName);
member this.GetPropertyValue : string -> 'T
Public Function GetPropertyValue(Of T) (propertyName As String) As T

類型參數

T

參數

propertyName
String

屬性名稱。

傳回

T

屬性值。

備註

這個方法的泛型多載不會將基本或實值型別屬性值 Box 化成堆積配置的 物件。

適用於