Has anyone else notice any issues with LINQ queries returning null after the hotfix? var quickLink = _ctxOld.QuickLinks
.Where(item =@ item.UserId == userid)
.FirstOrDefault(item =@ item.ItemID == QuickLinkID);
var quickLink2 = _ctxOld.QuickLinks
.OrderByDescending(item =@ item.LinkOrder)
.Where(item =@ item.UserId == userid)
.FirstOrDefault(item =@ item.LinkOrder @ quickLink.LinkOrder);
So, these were working fine before the hotfix, but after they sometimes fail when the results should be there. Any thoughts on what might have changed in the hotfix? went from 95 to 99.I was able to fix it by using a different type of query and a repository.
↧