In .EntityFrameworkCore Project :
public class EfCoreCountryRepository : EfCoreRepository<myDbContext, Country, Guid>, ICountryRepository { public EfCoreCountryRepository( IDbContextProvider<myDbContext> dbContextProvider) : base(dbContextProvider) { } }
How to refer this function so that i can use dbcontext in domain class? since in IRepository metadata do not have dbcontext in its parameter
1.4m articles
1.4m replys
5 comments
57.0k users