public SqlGenericRepository(PPICEntities context)
 {
     _context = context;
     _dbSet   = context.Set <TEntity>();
 }
예제 #2
0
 public void RevertChanges()
 {
     //overwrite the existing context with a new, fresh one to revert all the changes
     _context = new PPICEntities();
 }