DbEntityEntry<TEntity> Class
Instances of this class provide access to information about and control of entities that are being tracked by the DbContext. Use the Entity or Entities methods of the context to obtain objects of this type.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | CurrentValues | Gets the current property values for the tracked entity represented by this object. |
![]() | Entity | Gets the entity. |
![]() | OriginalValues | Gets the original property values for the tracked entity represented by this object. The original values are usually the entity's property values as they were when last queried from the database. |
![]() | State | Gets or sets the state of the entity. |
Name | Description | |
---|---|---|
![]() | Collection(String) | Gets an object that represents the collection navigation property from this entity to a collection of related entities. |
![]() | Collection<TElement>(Expression<Func<TEntity, ICollection<TElement>>>) | Gets an object that represents the collection navigation property from this entity to a collection of related entities. |
![]() | Collection<TElement>(String) | Gets an object that represents the collection navigation property from this entity to a collection of related entities. |
![]() | ComplexProperty(String) | Gets an object that represents a complex property of this entity. |
![]() | ComplexProperty<TComplexProperty>(Expression<Func<TEntity, TComplexProperty>>) | Gets an object that represents a complex property of this entity. |
![]() | ComplexProperty<TComplexProperty>(String) | Gets an object that represents a complex property of this entity. |
![]() | Equals(DbEntityEntry<TEntity>) | Determines whether the specified DbEntityEntry<TEntity> is equal to this instance. Two DbEntityEntry<TEntity> instances are considered equal if they are both entries for the same entity on the same DbContext. |
![]() | Equals(Object) | Determines whether the specified Object is equal to this instance. Two DbEntityEntry<TEntity> instances are considered equal if they are both entries for the same entity on the same DbContext.(Overrides Object.Equals(Object).) |
![]() | Finalize() | (Inherited from Object.) |
![]() | GetDatabaseValues() | Queries the database for copies of the values of the tracked entity as they currently exist in the database. Note that changing the values in the returned dictionary will not update the values in the database. If the entity is not found in the database then null is returned. |
![]() | GetDatabaseValuesAsync() | Asynchronously queries the database for copies of the values of the tracked entity as they currently exist in the database. Note that changing the values in the returned dictionary will not update the values in the database. If the entity is not found in the database then null is returned. |
![]() | GetDatabaseValuesAsync(CancellationToken) | Asynchronously queries the database for copies of the values of the tracked entity as they currently exist in the database. Note that changing the values in the returned dictionary will not update the values in the database. If the entity is not found in the database then null is returned. |
![]() | GetHashCode() | Returns a hash code for this instance.(Overrides Object.GetHashCode().) |
![]() | GetType() | Gets the Type of the current instance. |
![]() | GetValidationResult() | Validates this DbEntityEntry<TEntity> instance and returns validation result. |
![]() | Member(String) | Gets an object that represents a member of the entity. The runtime type of the returned object will vary depending on what kind of member is asked for. The currently supported member types and their return types are: Reference navigation property: DbReferenceEntry. Collection navigation property: DbCollectionEntry. Primitive/scalar property: DbPropertyEntry. Complex property: DbComplexPropertyEntry. |
![]() | Member<TMember>(String) | Gets an object that represents a member of the entity. The runtime type of the returned object will vary depending on what kind of member is asked for. The currently supported member types and their return types are: Reference navigation property: DbReferenceEntry<TEntity, TProperty>. Collection navigation property: DbCollectionEntry<TEntity, TElement>. Primitive/scalar property: DbPropertyEntry<TEntity, TProperty>. Complex property: DbComplexPropertyEntry<TEntity, TComplexProperty>. |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | Property(String) | Gets an object that represents a scalar or complex property of this entity. |
![]() | Property<TProperty>(Expression<Func<TEntity, TProperty>>) | Gets an object that represents a scalar or complex property of this entity. |
![]() | Property<TProperty>(String) | Gets an object that represents a scalar or complex property of this entity. |
![]() | Reference(String) | Gets an object that represents the reference (i.e. non-collection) navigation property from this entity to another entity. |
![]() | Reference<TProperty>(Expression<Func<TEntity, TProperty>>) | Gets an object that represents the reference (i.e. non-collection) navigation property from this entity to another entity. |
![]() | Reference<TProperty>(String) | Gets an object that represents the reference (i.e. non-collection) navigation property from this entity to another entity. |
![]() | Reload() | Reloads the entity from the database overwriting any property values with values from the database. The entity will be in the Unchanged state after calling this method. |
![]() | ReloadAsync() | Asynchronously reloads the entity from the database overwriting any property values with values from the database. The entity will be in the Unchanged state after calling this method. |
![]() | ReloadAsync(CancellationToken) | Asynchronously reloads the entity from the database overwriting any property values with values from the database. The entity will be in the Unchanged state after calling this method. |
![]() | ToString() | Returns a string representation of the database entity values.(Overrides Object.ToString().) |
Name | Description | |
---|---|---|
![]() ![]() | Implicit(DbEntityEntry<TEntity> to DbEntityEntry) | Returns a new instance of the non-generic DbEntityEntry class for the tracked entity represented by this object. |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.