I\'m trying to use Include extension on IQueryable set, but I have the following issue:
Error 1 \'System.Linq.IQueryable<.Model.InsuranceCaseType
If you deploy directly to your repository, you can use Include(), as per example code below:
Include()
public IQueryable FindAll() { var retRepository = from colaborador in All() .Include(x => x.Cliente) select colaborador; return retRepository; }