Поделиться через


DbEntityEntry<TEntity>.Reference<TProperty> - метод (Expression<Func<TEntity, TProperty>>)

[Эта страница относится к документации к Entity Framework 6. Последняя версия доступна в составе пакета Entity Framework NuGet. Дополнительные сведения об Entity Framework см. в разделе msdn.com/data/ef.]

Возвращает объект, представляющий свойство навигации по ссылке (то есть не по коллекции) из этой сущности в другую сущность.

Пространство имен:  System.Data.Entity.Infrastructure
Сборка:  EntityFramework (в EntityFramework.dll)

Синтаксис

'Декларация
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public Function Reference(Of TProperty As Class) ( _
    navigationProperty As Expression(Of Func(Of TEntity, TProperty)) _
) As DbReferenceEntry(Of TEntity, TProperty)
'Применение
Dim instance As DbEntityEntry 
Dim navigationProperty As Expression(Of Func(Of TEntity, TProperty))
Dim returnValue As DbReferenceEntry(Of TEntity, TProperty)

returnValue = instance.Reference(navigationProperty)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public DbReferenceEntry<TEntity, TProperty> Reference<TProperty>(
    Expression<Func<TEntity, TProperty>> navigationProperty
)
where TProperty : class
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
generic<typename TProperty>
where TProperty : ref class 
DbReferenceEntry<TEntity, TProperty>^ Reference(
    Expression<Func<TEntity, TProperty>^>^ navigationProperty
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
member Reference : 
        navigationProperty:Expression<Func<'TEntity, 'TProperty>> -> DbReferenceEntry<'TEntity, 'TProperty>  when 'TProperty : not struct
JScript does not support generic types and methods.

Параметры типа

  • TProperty
    Тип свойства.

Параметры

Возвращаемое значение

Тип: System.Data.Entity.Infrastructure.DbReferenceEntry<TEntity, TProperty>
Объект, представляющий свойство навигации.

См. также

Справочник

DbEntityEntry<TEntity> Класс

Reference - перегрузка

System.Data.Entity.Infrastructure - пространство имен