Using Both (Extend & Override)
How to Use Both? (Override + Extend)
1. Create a New Interface for Your Custom Methods
public interface IExtendedRENUnitOfWork<TDbContext> : IRENUnitOfWork<TDbContext>
where TDbContext : DbContext
{
void AdditionalMethod();
}2. Implement Your Custom Unit of Work
3. Register Your Custom Implementation
4. Use Your Custom Unit of Work in Action
Last updated