Using Both (Extend & Override)
How to Use Both? (Override + Extend)
1. Create a New Interface for Your Custom Methods
public interface IExtendedRENRepository<TEntity> : IRENRepository<TEntity>
where TEntity : class
{
void AdditionalMethod();
}2. Implement Your Custom Repository
3. Register Your Custom Implementation
4. Use Your Custom Repository in Action
Last updated