Table of Contents

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

TEntity

The type of the entity for this repository.

TKey

The type of the primary key for this entity.

Inherited Members