Upgrade to .NET 6 and update all dependencies

This commit is contained in:
Neil Brommer 2022-04-28 08:57:58 -07:00
parent 2356fbab4f
commit 28747dfe5b
17 changed files with 698 additions and 58 deletions

View file

@ -20,7 +20,7 @@ namespace Start.Server.Data.Services {
.Where(bc => bc.BookmarkContainerId == bookmarkContainerId)
.If(includeGroups, q => q.Include(bc => bc.BookmarkGroups))
.If(includeBookmarks, q => q
.Include(bc => bc.BookmarkGroups)
.Include(bc => bc.BookmarkGroups!)
.ThenInclude(bg => bg.Bookmarks))
.SingleOrDefaultAsync();
@ -40,7 +40,7 @@ namespace Start.Server.Data.Services {
.Where(bc => bc.ApplicationUserId == userId)
.If(includeGroups, q => q.Include(bc => bc.BookmarkGroups))
.If(includeBookmarks, q => q
.Include(bc => bc.BookmarkGroups)
.Include(bc => bc.BookmarkGroups!)
.ThenInclude(bg => bg.Bookmarks))
.ToListAsync();
}