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.v20.2.DataModel.dll

NuGet Packages: DevExpress.Scaffolding.Core, DevExpress.WindowsDesktop.Mvvm.DataModel

Declaration

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

Type Parameters

Name
TEntity
See Also