Upgrade to .NET 6 and update all dependencies
This commit is contained in:
parent
2356fbab4f
commit
28747dfe5b
17 changed files with 698 additions and 58 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue