LocalView<TEntity>.Contains(TEntity) Method

Definition

Returns true if the entity is being tracked by the context and has not been marked as Deleted.

public virtual bool Contains (TEntity item);
abstract member Contains : 'Entity -> bool
override this.Contains : 'Entity -> bool
Public Overridable Function Contains (item As TEntity) As Boolean

Parameters

item
TEntity

The entity to check.

Returns

true if the entity is being tracked by the context and has not been marked as Deleted.

Implements

Remarks

See Local views of tracked entities in EF Core for more information and examples.

Applies to