зеркало из https://github.com/aspnet/MusicStore.git
Adding TODO for ordering in GenreComponent
This commit is contained in:
Родитель
48b17c886c
Коммит
90d816dfd0
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче