IConventionTypeBase.FindComplexProperty 方法

定義

多載

FindComplexProperty(MemberInfo)

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

FindComplexProperty(String)

取得具有指定名稱的複雜屬性。 null如果未定義具有指定名稱的屬性,則傳回 。

FindComplexProperty(MemberInfo)

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

public virtual Microsoft.EntityFrameworkCore.Metadata.IConventionComplexProperty? FindComplexProperty (System.Reflection.MemberInfo memberInfo);
abstract member FindComplexProperty : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IConventionComplexProperty
override this.FindComplexProperty : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IConventionComplexProperty
Public Overridable Function FindComplexProperty (memberInfo As MemberInfo) As IConventionComplexProperty

參數

memberInfo
MemberInfo

實體類別上的成員。

傳回

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

備註

此 API 只會尋找複雜的屬性,而且找不到流覽、純量或服務屬性。

適用於

FindComplexProperty(String)

取得具有指定名稱的複雜屬性。 null如果未定義具有指定名稱的屬性,則傳回 。

public Microsoft.EntityFrameworkCore.Metadata.IConventionComplexProperty? FindComplexProperty (string name);
abstract member FindComplexProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IConventionComplexProperty
Public Function FindComplexProperty (name As String) As IConventionComplexProperty

參數

name
String

屬性的名稱。

傳回

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

備註

此 API 只會尋找複雜的屬性,而且找不到流覽、純量或服務屬性。

適用於