Changeset 595d2e5 for KernelRecordsMVC.Web/Controllers/ReleaseController.cs
- Timestamp:
- 09/02/26 05:22:09 (4 weeks ago)
- Branches:
- main
- Children:
- 1dcdb2c
- Parents:
- d89d25b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
KernelRecordsMVC.Web/Controllers/ReleaseController.cs
rd89d25b r595d2e5 139 139 { 140 140 var release = _context.Releases 141 .Include(r => r.ReleaseArtists) 142 .ThenInclude(ra => ra.Artist) 143 141 144 .Include(r => r.Products) 142 143 .Include(r => r.ReleaseArtists) 144 .ThenInclude(ra => ra.Artist) 145 .ThenInclude(p => p.ModificationProducts) 146 .ThenInclude(mp => mp.Modification) 145 147 146 148 .Include(r => r.Album) 147 .ThenInclude(a => a!.AlbumSongs)148 .ThenInclude(x => x.Song)149 .ThenInclude(s => s.SongArtists)150 .ThenInclude(sa => sa.Artist)149 .ThenInclude(a => a.AlbumSongs) 150 .ThenInclude(albumSong => albumSong.Song) 151 .ThenInclude(song => song.SongArtists) 152 .ThenInclude(songArtist => songArtist.Artist) 151 153 152 154 .Include(r => r.SingleRelease)
Note:
See TracChangeset
for help on using the changeset viewer.
