Freigeben über


DbEntityEntry<TEntity>.Property<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 eine skalare oder komplexe Eigenschaft dieser Entität darstellt.

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

Syntax

'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
<SuppressMessageAttribute("Microsoft.Naming", "CA1719:ParameterNamesShouldNotMatchMemberNames", MessageId := "0#",  _
    Justification := "Rule predates more fluent naming conventions.")> _
Public Function Property(Of TProperty) ( _
    property As Expression(Of Func(Of TEntity, TProperty)) _
) As DbPropertyEntry(Of TEntity, TProperty)
'Usage
Dim instance As DbEntityEntry 
Dim property As Expression(Of Func(Of TEntity, TProperty))
Dim returnValue As DbPropertyEntry(Of TEntity, TProperty)

returnValue = instance.Property(property)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[SuppressMessageAttribute("Microsoft.Naming", "CA1719:ParameterNamesShouldNotMatchMemberNames", MessageId = "0#", 
    Justification = "Rule predates more fluent naming conventions.")]
public DbPropertyEntry<TEntity, TProperty> Property<TProperty>(
    Expression<Func<TEntity, TProperty>> property
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1719:ParameterNamesShouldNotMatchMemberNames", MessageId = L"0#", 
    Justification = L"Rule predates more fluent naming conventions.")]
public:
generic<typename TProperty>
DbPropertyEntry<TEntity, TProperty>^ Property(
    Expression<Func<TEntity, TProperty>^>^ property
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
[<SuppressMessageAttribute("Microsoft.Naming", "CA1719:ParameterNamesShouldNotMatchMemberNames", MessageId = "0#", 
    Justification = "Rule predates more fluent naming conventions.")>]
member Property : 
        property:Expression<Func<'TEntity, 'TProperty>> -> DbPropertyEntry<'TEntity, 'TProperty> 
JScript does not support generic types and methods.

Typparameter

  • TProperty
    Der Typ der Eigenschaft.

Parameter

Rückgabewert

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

Siehe auch

Verweis

DbEntityEntry<TEntity> Klasse

Property-Überladung

System.Data.Entity.Infrastructure-Namespace