Update InventoryController.cs

This commit is contained in:
MarcEricMartel 2022-10-16 07:39:50 -07:00
parent db4fc250b9
commit 81f32c630b

View File

@ -79,7 +79,7 @@ public class InventoryController : Controller {
if (order.Contains("Desc")) {
if (!lastId.HasValue)
lastId = _context.Products.Max(x => x.Id);
ret = ret.Where(x => x.Id < lastId && x.Id > lastId - 5)
ret = ret.Where(x => x.Id < lastId && x.Id > lastId - 5);
} else {
if (!lastId.HasValue)
lastId = 1;