Interface IRepo<TEntity>
Interface of an TEntity
repository.
public interface IRepo<TEntity> : INonQueryRepo<TEntity>
Type Parameters
TEntity
- Inherited Members
- Extension Methods
Properties
All
A queryable enumeration of ALL entities of TEntity
in the store.
IQueryable<TEntity> All { get; }
Property Value
- IQueryable<TEntity>
Remarks
Any changes to returned entities are beeing tracked (for potential commit with the underlying store).
AllUntracked
A queryable enumeration of ALL entities of TEntity
in the store.
IQueryable<TEntity> AllUntracked { get; }
Property Value
- IQueryable<TEntity>
Remarks
Changes to returned entities are NOT beeing tracked.