コード例 #1
0
 public GenericRepository(OnlineLibraryDBContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
コード例 #2
0
 public GenericRepository()
 {
     this._context = new OnlineLibraryDBContext(new DbContextOptions <OnlineLibraryDBContext>());
     table         = _context.Set <T>();
 }