IReadableRepository<TEntity, TKey> Interface
Definition
- Assemblies
- Savvyio.Core.dll
Defines a generic way of abstracting readable repositories (cRud).
public interface IReadableRepository<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 |
|---|---|
| GetByIdAsync(TKey, Action<AsyncOptions>) | Loads the entity from the specified |
See Also
IRepository<TEntity, TKey>