DbContext.Entry Method

Definition

Overloads

Entry(Object)

Gets an EntityEntry for the given entity. The entry provides access to change tracking information and operations for the entity.

Entry<TEntity>(TEntity)

Gets an EntityEntry<TEntity> for the given entity. The entry provides access to change tracking information and operations for the entity.

Entry(Object)

Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs

Gets an EntityEntry for the given entity. The entry provides access to change tracking information and operations for the entity.

C#
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry Entry (object entity);

Parameters

entity
Object

The entity to get the entry for.

Returns

The entry for the given entity.

Remarks

This method may be called on an entity that is not tracked. You can then set the State property on the returned entry to have the context begin tracking the entity in the specified state.

See Accessing tracked entities in EF Core for more information and examples.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0

Entry<TEntity>(TEntity)

Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs
Source:
DbContext.cs

Gets an EntityEntry<TEntity> for the given entity. The entry provides access to change tracking information and operations for the entity.

C#
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry<TEntity> Entry<TEntity> (TEntity entity) where TEntity : class;

Type Parameters

TEntity

The type of the entity.

Parameters

entity
TEntity

The entity to get the entry for.

Returns

The entry for the given entity.

Remarks

See Accessing tracked entities in EF Core for more information and examples.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0