im new in MVC,i have a project used repository and unit of work,in the repository of the project its written :
private DbContext context;
private DbSet<TEntity> dbQueryable;
public GenericEFRepository(DbContext context) : base(context.Set<TEntity>())
{
this.context = context;
this.dbQueryable = (DbSet<TEntity>)this.Queryable;
}
can anyone explain what does it do and tell me what :base is?