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.v24.1.DataModel.dll
NuGet Package: DevExpress.Scaffolding.Core
Declaration
public interface IReadOnlyRepository<TEntity> :
IRepositoryQuery<TEntity>,
IQueryable<TEntity>,
IEnumerable<TEntity>,
IEnumerable,
IQueryable
where TEntity : class
Type Parameters
Name |
---|
TEntity |
Extension Methods
See Also