зеркало из https://github.com/aspnet/MusicStore.git
Fixing bug in GetCartAlbumTitles
This commit is contained in:
Родитель
6aea6541d0
Коммит
2080a9776e
|
@ -23,7 +23,7 @@ namespace MusicStore.Components
|
|||
var cartItems = await cart.GetCartAlbumTitles();
|
||||
|
||||
ViewBag.CartCount = cartItems.Count;
|
||||
ViewBag.CartSummary = string.Join("\n", cartItems);
|
||||
ViewBag.CartSummary = string.Join("\n", cartItems.Distinct());
|
||||
|
||||
return View();
|
||||
}
|
||||
|
|
|
@ -101,7 +101,6 @@ namespace MusicStore.Models
|
|||
.CartItems
|
||||
.Where(cart => cart.CartId == _shoppingCartId)
|
||||
.Select(c => c.Album.Title)
|
||||
.Distinct()
|
||||
.OrderBy(n => n)
|
||||
.ToListAsync();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче