IDeletableRepository<TEntity, TKey> Interface
Definition
- Assemblies
- Savvyio.Core.dll
Defines a generic way of abstracting deletable repositories (cruD).
public interface IDeletableRepository<in TEntity, TKey> : IRepository<TEntity, TKey> where TEntity : class, IIdentity<TKey>
Type Parameters
TEntityThe type of the entity.
TKeyThe type of the key that uniquely identifies the entity.
Methods
| Name | Description |
|---|---|
| Remove(TEntity) | Marks the specified |
| RemoveRange(IEnumerable<TEntity>) | Marks the specified |
See Also
IRepository<TEntity, TKey>