次の方法で共有


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 では、複雑なプロパティのみが検索され、ナビゲーション、スカラー、またはサービスのプロパティは見つかりません。

適用対象