Freigeben über


DbEntityEntry<TEntity>.Reference<TProperty>-Methode (Expression<Func<TEntity, TProperty>>)

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Ruft ein Objekt ab, das die Referenznavigationseigenschaft (d. h. keine Auflistung) von dieser Entität für eine andere Entität darstellt.

Namespace:  System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
<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)
'Usage
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.

Typparameter

  • TProperty
    Der Typ der Eigenschaft.

Parameter

Rückgabewert

Typ: System.Data.Entity.Infrastructure.DbReferenceEntry<TEntity, TProperty>
Ein Objekt, das die Navigationseigenschaft darstellt.

Siehe auch

Verweis

DbEntityEntry<TEntity> Klasse

Reference-Überladung

System.Data.Entity.Infrastructure-Namespace