I have a method of type IQueryable<T> and here is it's implementation: 
 public IQueryable<T> Get()
 {
     return db.Set<T>();
 }
I must write LINQ query where I want to join two tables (left join). It is Identtiy table Users and my custom table PersonalInformation which extend User registration fields and now I want to call this method in my LINQ query and it is good. Here is my Linq:
IRepository<PersonalInformation> personRepository;
IRepository<ApplicationUser> usersRepository;
var query = personRepository.Get();
var test = usersRepository.Get()
                          .GroupJoin(query,
                                     n => n.Id,
                                     m => m.UserId,
                                     (n, ms) => new { n, ms = ms.DefaultIfEmpty() })
                          .SelectMany(z => z.ms.Select(m => new PersonalInfoModel
                          {
                              Name = m.Name,
                              LastName = m.LastName,
                              Email = z.n.Email
                          }));
But I have an error in 
var test =  usersRepository.Get() - System.NotSupportedException. So  method Get  from personRepository called good but usersRepository  method return null. Where I did the mistake?? Thanks
 
    