Partager via


EntityEntry<TEntity>.ComplexProperty Méthode

Définition

Surcharges

ComplexProperty<TProperty>(IComplexProperty)

Fournit l’accès aux informations et opérations de suivi des modifications pour une propriété de type complexe donnée de cette entité.

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

Fournit l’accès aux informations et opérations de suivi des modifications pour une propriété de type complexe donnée de cette entité.

ComplexProperty<TProperty>(String)

Fournit l’accès aux informations et opérations de suivi des modifications pour une propriété de type complexe donnée de cette entité.

ComplexProperty<TProperty>(IComplexProperty)

Fournit l’accès aux informations et opérations de suivi des modifications pour une propriété de type complexe donnée de cette entité.

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TProperty> ComplexProperty<TProperty> (Microsoft.EntityFrameworkCore.Metadata.IComplexProperty complexProperty);
override this.ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TProperty) (complexProperty As IComplexProperty) As ComplexPropertyEntry(Of TEntity, TProperty)

Paramètres de type

TProperty

Type de la propriété.

Paramètres

complexProperty
IComplexProperty

Propriété pour laquelle accéder aux informations et aux opérations.

Retours

ComplexPropertyEntry<TEntity,TProperty>

Objet qui expose des informations et des opérations de suivi des modifications pour la propriété donnée.

Remarques

Pour plus d’informations et d’exemples, consultez Accès aux entités suivies dans EF Core .

S’applique à

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

Fournit l’accès aux informations et opérations de suivi des modifications pour une propriété de type complexe donnée de cette entité.

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TProperty> ComplexProperty<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> propertyExpression);
override this.ComplexProperty : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TProperty) (propertyExpression As Expression(Of Func(Of TEntity, TProperty))) As ComplexPropertyEntry(Of TEntity, TProperty)

Paramètres de type

TProperty

Paramètres

propertyExpression
Expression<Func<TEntity,TProperty>>

Expression lambda représentant la propriété pour laquelle accéder aux informations et aux opérations.

Retours

ComplexPropertyEntry<TEntity,TProperty>

Objet qui expose des informations et des opérations de suivi des modifications pour la propriété donnée.

Remarques

Pour plus d’informations et d’exemples, consultez Accès aux entités suivies dans EF Core .

S’applique à

ComplexProperty<TProperty>(String)

Fournit l’accès aux informations et opérations de suivi des modifications pour une propriété de type complexe donnée de cette entité.

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TProperty> ComplexProperty<TProperty> (string propertyName);
override this.ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TProperty) (propertyName As String) As ComplexPropertyEntry(Of TEntity, TProperty)

Paramètres de type

TProperty

Type de la propriété.

Paramètres

propertyName
String

Propriété pour laquelle accéder aux informations et aux opérations.

Retours

ComplexPropertyEntry<TEntity,TProperty>

Objet qui expose des informations et des opérations de suivi des modifications pour la propriété donnée.

Remarques

Pour plus d’informations et d’exemples, consultez Accès aux entités suivies dans EF Core .

S’applique à