EntityEntry<TEntity>.ComplexProperty Metodo

Definizione

Overload

ComplexProperty<TProperty>(IComplexProperty)

Fornisce l'accesso alle informazioni e alle operazioni di rilevamento delle modifiche per una determinata proprietà di tipo complesso di questa entità.

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

Fornisce l'accesso alle informazioni e alle operazioni di rilevamento delle modifiche per una determinata proprietà di tipo complesso di questa entità.

ComplexProperty<TProperty>(String)

Fornisce l'accesso alle informazioni e alle operazioni di rilevamento delle modifiche per una determinata proprietà di tipo complesso di questa entità.

ComplexProperty<TProperty>(IComplexProperty)

Fornisce l'accesso alle informazioni e alle operazioni di rilevamento delle modifiche per una determinata proprietà di tipo complesso di questa 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)

Parametri di tipo

TProperty

Tipo della proprietà.

Parametri

complexProperty
IComplexProperty

Proprietà per accedere alle informazioni e alle operazioni.

Restituisce

ComplexPropertyEntry<TEntity,TProperty>

Oggetto che espone le informazioni e le operazioni di rilevamento delle modifiche per la proprietà specificata.

Commenti

Per altre informazioni ed esempi, vedere Accesso alle entità rilevate in EF Core .

Si applica a

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

Fornisce l'accesso alle informazioni e alle operazioni di rilevamento delle modifiche per una determinata proprietà di tipo complesso di questa 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)

Parametri di tipo

TProperty

Parametri

propertyExpression
Expression<Func<TEntity,TProperty>>

Espressione lambda che rappresenta la proprietà per accedere alle informazioni e alle operazioni.

Restituisce

ComplexPropertyEntry<TEntity,TProperty>

Oggetto che espone le informazioni e le operazioni di rilevamento delle modifiche per la proprietà specificata.

Commenti

Per altre informazioni ed esempi, vedere Accesso alle entità rilevate in EF Core .

Si applica a

ComplexProperty<TProperty>(String)

Fornisce l'accesso alle informazioni e alle operazioni di rilevamento delle modifiche per una determinata proprietà di tipo complesso di questa 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)

Parametri di tipo

TProperty

Tipo della proprietà.

Parametri

propertyName
String

Proprietà per accedere alle informazioni e alle operazioni.

Restituisce

ComplexPropertyEntry<TEntity,TProperty>

Oggetto che espone le informazioni e le operazioni di rilevamento delle modifiche per la proprietà specificata.

Commenti

Per altre informazioni ed esempi, vedere Accesso alle entità rilevate in EF Core .

Si applica a