I have this linq query. It complains with the warning message.
Warning CS8603: Possible null reference return
Code:
return await _applicationDbContext.Pies
.Include(x => x.Portions).AsSingleQuery()
.Include(x => x.Ingredients).AsSplitQuery()
.SingleOrDefaultAsync(x => x.Id == id);
Further more this is making it ugly with squiggles all over.
Can anything be done about it?
Looked at the following SO posts, but could not figure out what to do.

Task<Pie?>?