Adding TODO for ordering in GenreComponent

This commit is contained in:
Andrew Peters 2016-04-15 13:32:31 -07:00
Родитель 48b17c886c
Коммит 90d816dfd0
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -19,6 +19,10 @@ namespace MusicStore.Components
public async Task<IViewComponentResult> InvokeAsync()
{
// TODO use nested sum https://github.com/aspnet/EntityFramework/issues/3792
//.OrderByDescending(
// g => g.Albums.Sum(a => a.OrderDetails.Sum(od => od.Quantity)))
var genres = await DbContext.Genres.Select(g => g.Name).Take(9).ToListAsync();
return View(genres);