EntityTypeExtensions.FindProperty 方法

定義

多載

FindProperty(IEntityType, MemberInfo)

取得具有指定成員資訊的屬性。 如果找不到任何屬性,則傳 null 回 。

此 API 只會尋找純量屬性,而且找不到導覽屬性。 用來 FindNavigation(IEntityType, MemberInfo) 尋找導覽屬性。

FindProperty(IEntityType, PropertyInfo)

取得指定實體型別上的屬性。 如果找不到任何屬性,則傳回 null。

此 API 只會尋找純量屬性,而且找不到導覽屬性。 用來 FindNavigation(IEntityType, PropertyInfo) 尋找導覽屬性。

FindProperty(IEntityType, MemberInfo)

取得具有指定成員資訊的屬性。 如果找不到任何屬性,則傳 null 回 。

此 API 只會尋找純量屬性,而且找不到導覽屬性。 用來 FindNavigation(IEntityType, MemberInfo) 尋找導覽屬性。

public static Microsoft.EntityFrameworkCore.Metadata.IProperty FindProperty (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, System.Reflection.MemberInfo memberInfo);
static member FindProperty : Microsoft.EntityFrameworkCore.Metadata.IEntityType * System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IProperty
<Extension()>
Public Function FindProperty (entityType As IEntityType, memberInfo As MemberInfo) As IProperty

參數

entityType
IEntityType

實體類型。

memberInfo
MemberInfo

實體類別上的成員。

傳回

如果找不到屬性,則 null 為 。

適用於

FindProperty(IEntityType, PropertyInfo)

取得指定實體型別上的屬性。 如果找不到任何屬性,則傳回 null。

此 API 只會尋找純量屬性,而且找不到導覽屬性。 用來 FindNavigation(IEntityType, PropertyInfo) 尋找導覽屬性。

public static Microsoft.EntityFrameworkCore.Metadata.IProperty FindProperty (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, System.Reflection.PropertyInfo propertyInfo);
static member FindProperty : Microsoft.EntityFrameworkCore.Metadata.IEntityType * System.Reflection.PropertyInfo -> Microsoft.EntityFrameworkCore.Metadata.IProperty
<Extension()>
Public Function FindProperty (entityType As IEntityType, propertyInfo As PropertyInfo) As IProperty

參數

entityType
IEntityType

要尋找屬性的實體類型。

propertyInfo
PropertyInfo

實體類別上的 屬性。

傳回

如果找不到任何屬性,則為 null。

適用於