Skip to main content
A newer version of this page is available. .

IReadOnlyRepository<TEntity> Interface

The IReadOnlyRepository interface represents the read-only implementation of the Repository pattern such that it can be used to query entities of a given type.

Namespace: DevExpress.Mvvm.DataModel

Assembly: DevExpress.Mvvm.v19.1.DataModel.dll

Declaration

public interface IReadOnlyRepository<TEntity> :
    IRepositoryQuery<TEntity>,
    IQueryable<TEntity>,
    IEnumerable<TEntity>,
    IEnumerable,
    IQueryable
    where TEntity : class

Type Parameters

Name
TEntity
See Also