How to fix this query to meet the new .NET Core 3 update?
var rtn =
from fav in _context.AdvertFavorite
join advert in _context.Adverts on fav.AdvertID equals advert.AdvertID
join blob in _context.Blobs on advert.AdvertID equals blob.AdvertID
join user in _userManager.Users on advert.UserID equals user.Id
where fav.UserID == usrid
group new { blob, user, advert } by new { advert.AdvertID } into grp
select grp;
var rtn1 = rtn.ToList();
return rtn1;