EntityEntry.ComplexProperty Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ComplexProperty(IComplexProperty) |
Provides access to change tracking information and operations for a given property of a complex type on this entity. |
ComplexProperty(String) |
Provides access to change tracking information and operations for a given property of a complex type on this entity. |
ComplexProperty(IComplexProperty)
Provides access to change tracking information and operations for a given property of a complex type on this entity.
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry ComplexProperty (Microsoft.EntityFrameworkCore.Metadata.IComplexProperty property);
abstract member ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
override this.ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
Public Overridable Function ComplexProperty (property As IComplexProperty) As ComplexPropertyEntry
Parameters
- property
- IComplexProperty
The property to access information and operations for.
Returns
An object that exposes change tracking information and operations for the given property.
Remarks
See Accessing tracked entities in EF Core for more information and examples.
Applies to
ComplexProperty(String)
Provides access to change tracking information and operations for a given property of a complex type on this entity.
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry ComplexProperty (string propertyName);
abstract member ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
override this.ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
Public Overridable Function ComplexProperty (propertyName As String) As ComplexPropertyEntry
Parameters
- propertyName
- String
The property to access information and operations for.
Returns
An object that exposes change tracking information and operations for the given property.
Remarks
See Accessing tracked entities in EF Core for more information and examples.
Applies to
Entity Framework