IMutableTypeBase.FindComplexProperty 方法

定義

多載

FindComplexProperty(MemberInfo)

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

FindComplexProperty(String)

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

FindComplexProperty(MemberInfo)

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

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

參數

memberInfo
MemberInfo

CLR 型別上的成員。

傳回

如果找不到屬性,則為 null

備註

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

適用於

FindComplexProperty(String)

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

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

參數

name
String

屬性的名稱。

傳回

如果找不到屬性,則為 null

備註

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

適用於