I am using Generic repository to wrap DbContext and DbSet classes from upper level. However, when in certain queries I need to use ".Include()" method to include navigation properties. But I am unable to find these methods on repository methods returing IQueryable
Like,
this.repository.GetQuery<GeneralCalendarDates>()
this doesn't have include method, though I can use .ToList() here.
Any idea what could be wrong here?