次の方法で共有


DbEntityEntry<TEntity>.Reference メソッド

定義

オーバーロード

Reference(String)

このエンティティから別のエンティティへの参照 (つまりコレクションではない) ナビゲーション プロパティを表すオブジェクトを取得します。

Reference<TProperty>(Expression<Func<TEntity,TProperty>>)

このエンティティから別のエンティティへの参照 (つまりコレクションではない) ナビゲーション プロパティを表すオブジェクトを取得します。

Reference<TProperty>(String)

このエンティティから別のエンティティへの参照 (つまりコレクションではない) ナビゲーション プロパティを表すオブジェクトを取得します。

Reference(String)

このエンティティから別のエンティティへの参照 (つまりコレクションではない) ナビゲーション プロパティを表すオブジェクトを取得します。

public System.Data.Entity.Infrastructure.DbReferenceEntry Reference (string navigationProperty);
member this.Reference : string -> System.Data.Entity.Infrastructure.DbReferenceEntry
Public Function Reference (navigationProperty As String) As DbReferenceEntry

パラメーター

navigationProperty
String

ナビゲーション プロパティの名前。

戻り値

ナビゲーション プロパティを表すオブジェクト。

適用対象

Reference<TProperty>(Expression<Func<TEntity,TProperty>>)

このエンティティから別のエンティティへの参照 (つまりコレクションではない) ナビゲーション プロパティを表すオブジェクトを取得します。

public System.Data.Entity.Infrastructure.DbReferenceEntry<TEntity,TProperty> Reference<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> navigationProperty) where TProperty : class;
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.Infrastructure.DbReferenceEntry<TEntity,TProperty> Reference<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> navigationProperty) where TProperty : class;
member this.Reference : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> -> System.Data.Entity.Infrastructure.DbReferenceEntry<'Entity, 'Property (requires 'Entity : null and 'Property : null)> (requires 'Property : null)
Public Function Reference(Of TProperty As Class) (navigationProperty As Expression(Of Func(Of TEntity, TProperty))) As DbReferenceEntry(Of TEntity, TProperty)

型パラメーター

TProperty

プロパティの型。

パラメーター

navigationProperty
Expression<Func<TEntity,TProperty>>

ナビゲーション プロパティを表す式。

戻り値

ナビゲーション プロパティを表すオブジェクト。

属性

適用対象

Reference<TProperty>(String)

このエンティティから別のエンティティへの参照 (つまりコレクションではない) ナビゲーション プロパティを表すオブジェクトを取得します。

public System.Data.Entity.Infrastructure.DbReferenceEntry<TEntity,TProperty> Reference<TProperty> (string navigationProperty) where TProperty : class;
member this.Reference : string -> System.Data.Entity.Infrastructure.DbReferenceEntry<'Entity, 'Property (requires 'Entity : null and 'Property : null)> (requires 'Property : null)
Public Function Reference(Of TProperty As Class) (navigationProperty As String) As DbReferenceEntry(Of TEntity, TProperty)

型パラメーター

TProperty

プロパティの型。

パラメーター

navigationProperty
String

ナビゲーション プロパティの名前。

戻り値

ナビゲーション プロパティを表すオブジェクト。

適用対象