Freigeben über


DbEntityEntry<TEntity>.ComplexProperty<TComplexProperty>-Methode (String)

[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 geschachtelte Eigenschaft dieser Entität darstellt.

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

Syntax

'Declaration
Public Function ComplexProperty(Of TComplexProperty) ( _
    propertyName As String _
) As DbComplexPropertyEntry(Of TEntity, TComplexProperty)
'Usage
Dim instance As DbEntityEntry 
Dim propertyName As String 
Dim returnValue As DbComplexPropertyEntry(Of TEntity, TComplexProperty)

returnValue = instance.ComplexProperty(propertyName)
public DbComplexPropertyEntry<TEntity, TComplexProperty> ComplexProperty<TComplexProperty>(
    string propertyName
)
public:
generic<typename TComplexProperty>
DbComplexPropertyEntry<TEntity, TComplexProperty>^ ComplexProperty(
    String^ propertyName
)
member ComplexProperty : 
        propertyName:string -> DbComplexPropertyEntry<'TEntity, 'TComplexProperty> 
JScript does not support generic types and methods.

Typparameter

  • TComplexProperty
    Der Typ der komplexen Eigenschaft.

Parameter

  • propertyName
    Typ: System.String
    Der Name der komplexen Eigenschaft.

Rückgabewert

Typ: System.Data.Entity.Infrastructure.DbComplexPropertyEntry<TEntity, TComplexProperty>
Ein Objekt, das die komplexe Eigenschaft darstellt.

Siehe auch

Verweis

DbEntityEntry<TEntity> Klasse

ComplexProperty-Überladung

System.Data.Entity.Infrastructure-Namespace