Entity Framework 6 Include missing

I have a project broken into separate classes for an MVC project using Entity Framework 6. One class has a Generic Interface and then it is inherited public interface IRepository<T> where T : class { IEnumerable<T> GetAll(); } Inherited as below public class Repository<T> : IRepository<T> where T : class { protected readonly DbContext _context… Read More Entity Framework 6 Include missing