コード例 #1
0
 public EfCoreUnitOfWork(EfCoreDbContext context)
 {
     Context = context;
 }
コード例 #2
0
 public EfCoreRepository(EfCoreDbContext context)
 {
     _context = context;
     DbSet    = context.Set <TEntity>();
 }