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
2.1m questions
2.1m answers
60 comments
57.0k users