ISearchableRepository<TEntity, TKey> Interface
Definition
- Assemblies
- Savvyio.Core.dll
Defines a generic way of abstracting searchable repositories (cRud).
public interface ISearchableRepository<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 |
|---|---|
| FindAllAsync(Expression<Func<TEntity, bool>>, Action<AsyncOptions>) | Finds all entities matching the specified |
See Also
IRepository<TEntity, TKey>