_context.Entry(user) .Collection(b => b.People) .Load();
var userWithPeople = _context.ApplicationUsers.Include(x => x.People).FirstOrDefault(x => x.Id == user.Id) ;