示例#1
0
 public EntitySaver(iTestDbContext context) => this.context = context;
示例#2
0
 public HomeController(iTestDbContext ctx)
 {
     this.ctx = ctx;
 }
示例#3
0
 public GenericRepository(iTestDbContext context)
 {
     this.context = context;
     this.dbSet   = this.Context.Set <TEntity>();
 }
示例#4
0
 public EfRepository(iTestDbContext context)
 {
     this.context = context;
 }