public IQueryable <TEntity> GetAll() { return(context.Set <TEntity>().AsNoTracking()); }
public Repository(DbContextMain context) { this.context = context; this.dbSet = context.Set <TEntity>(); }