Share via


IReadOnlyTypeBase.FindComplexProperty メソッド

定義

オーバーロード

FindComplexProperty(MemberInfo)

指定されたメンバー情報を持つ複雑なプロパティを取得します。 プロパティが null 見つからない場合は を返します。

FindComplexProperty(String)

指定した名前の複合プロパティを取得します。 指定した名前の null プロパティが定義されていない場合は を返します。

FindComplexProperty(MemberInfo)

指定されたメンバー情報を持つ複雑なプロパティを取得します。 プロパティが null 見つからない場合は を返します。

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

パラメーター

memberInfo
MemberInfo

クラスのメンバー。

戻り値

プロパティ。または null 、何も見つからない場合は 。

注釈

この API では、複雑なプロパティのみが検索され、ナビゲーション、スカラー、またはサービスのプロパティは見つかりません。

適用対象

FindComplexProperty(String)

指定した名前の複合プロパティを取得します。 指定した名前の null プロパティが定義されていない場合は を返します。

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

パラメーター

name
String

プロパティの名前。

戻り値

プロパティ。または null 、何も見つからない場合は 。

注釈

この API では、複雑なプロパティのみが検索され、ナビゲーション、スカラー、またはサービスのプロパティは見つかりません。

適用対象