Polish 4 (#3577)
Co-authored-by: Zeoic <zeorgaming@gmail.com> Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com>
This commit is contained in:
parent
b38400c092
commit
0ffe0228e5
30 changed files with 339 additions and 115 deletions
|
|
@ -252,8 +252,6 @@ public static class SeriesFilter
|
|||
if (!condition) return queryable;
|
||||
|
||||
var subQuery = queryable
|
||||
.Include(s => s.Progress)
|
||||
.Where(s => s.Progress != null)
|
||||
.Select(s => new
|
||||
{
|
||||
SeriesId = s.Id,
|
||||
|
|
@ -372,7 +370,7 @@ public static class SeriesFilter
|
|||
|
||||
var subQuery = queryable
|
||||
.Include(s => s.Progress)
|
||||
.Where(s => s.Progress != null)
|
||||
.Where(s => s.Progress.Any())
|
||||
.Select(s => new
|
||||
{
|
||||
SeriesId = s.Id,
|
||||
|
|
@ -435,7 +433,7 @@ public static class SeriesFilter
|
|||
|
||||
var subQuery = queryable
|
||||
.Include(s => s.Progress)
|
||||
.Where(s => s.Progress != null)
|
||||
.Where(s => s.Progress.Any())
|
||||
.Select(s => new
|
||||
{
|
||||
SeriesId = s.Id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue