|
|
|
@ -80,6 +80,11 @@ namespace ErsatzTV.Infrastructure.Data.Repositories |
|
|
|
.ThenInclude(i => i.MediaItem) |
|
|
|
.ThenInclude(i => i.MediaItem) |
|
|
|
.ThenInclude(i => (i as MusicVideo).Artist) |
|
|
|
.ThenInclude(i => (i as MusicVideo).Artist) |
|
|
|
.ThenInclude(a => a.ArtistMetadata) |
|
|
|
.ThenInclude(a => a.ArtistMetadata) |
|
|
|
|
|
|
|
.Include(c => c.Playouts) |
|
|
|
|
|
|
|
.ThenInclude(p => p.Items) |
|
|
|
|
|
|
|
.ThenInclude(i => i.MediaItem) |
|
|
|
|
|
|
|
.ThenInclude(i => (i as OtherVideo).OtherVideoMetadata) |
|
|
|
|
|
|
|
.ThenInclude(vm => vm.Artwork) |
|
|
|
.ToListAsync(); |
|
|
|
.ToListAsync(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|