コード例 #1
0
 public UnitOfWork(DemoContext context)
 {
     _context = context;
 }
コード例 #2
0
 public GenericRepository(DemoContext context)
 {
     Context = context;
     DbSet   = Context.Set <T>();
 }
コード例 #3
0
 public StudentRepository(DemoContext context) : base(context)
 {
 }