protected Repository(DotnetCoreWebSampleContext db)
 {
     Db  = db;
     Set = Db.Set <TEntity>();
 }
 public TodoController(DotnetCoreWebSampleContext context, IToDoService service)
 {
     _service = service;
 }
 public TodoRepository(DotnetCoreWebSampleContext db) : base(db)
 {
 }
예제 #4
0
 protected Repository(DotnetCoreWebSampleContext db)
 {
     _db  = db;
     _set = _db.Set <TEntity>();
 }