Interface IQueryableRepository<TEntity, TKey>
- Namespace
- eQuantic.Core.Data.Repository
- Assembly
- eQuantic.Core.Data.dll
A synchronous repository backed by an IQueryable<T> data source.
public interface IQueryableRepository<TEntity, TKey> : IQueryableReadRepository<TEntity, TKey>, IReadRepository<TEntity, TKey>, IWriteRepository<TEntity>, IRepository, IDisposable where TEntity : class, IEntity<TKey>
Type Parameters
TEntityThe type of the entity for this repository.
TKeyThe type of the primary key for this entity.
- Inherited Members