我需要按类别过滤产品,并提供每个类别的链接。
这是来自StoreController的方法:
public ViewResult Content(string category = null, int page = 1)
{
var model = new StoreContentViewModel
{
Items = _itemsRepository.GetItems()
.Where(i => i.Product.Category == category || i.Product.Category == null)
.OrderBy(i => i.ItemId)
.Skip((page-1)*PageSize)
.Take(PageSize),
PageInfo = new PageInfo
{
TotalItems = category == null ? _itemsRepository.GetItems().Count() :
_itemsRepository.GetItems().Where(i => i.Product.Category == category).Count(),
CurrentPage = page,
ItemsPerPage = PageSize
},
CurrentCategory = category
};
return View(model);
}
这是来自NavigationController的方法:
public PartialViewResult Menu(string category)
{
ViewBag.SelectedCategory = category;
IEnumerable<string> result = _itemsRepository.GetItems()
.Select(i => i.Product.Category)
.Distinct()
.OrderBy(i => i);
return PartialView(result);
}
此菜单方法的部分视图:
@model IEnumerable<string>
@Html.ActionLink("All products", "Content", "Store")
@foreach (var link in Model)
{
@Html.RouteLink(link,
new
{
controller = "Navigation",
action = "Menu",
category = link,
page = 1
},
new
{
@class = link == ViewBag.SelectedCatgory ? "selectedLink" : null
}
)
}
在我的模型中,1项包含1个产品(ProductId是Items表中的外键)。当我运行应用程序时,我得到一个错误:"值不能等于null或空。参数名称:controllerName"。此操作方法的单元测试也失败。
不添加分类过滤,一切都可以工作。
我认为问题在于我从_itemsRepository获得"Category"属性的行,(原因"filter"单元测试也失败):
_itemsRepository.Product.Category
正确吗?如果是,我想知道是否有其他方式访问"类别"属性??
提前谢谢。
编辑:
路由错误导致消息错误。
仍然不能按类别选择项目,问题肯定与这一行有关:
Items = _itemsRepository.GetItems()
.Where(i => i.Product.Category == category || i.Product.Category == null)
您是否使用实体框架作为您的ORM?如果是这样,实体框架不会自动为您加载相关对象。你必须告诉它你想要加载对象。您可以通过使用Include()方法来快速加载属性来实现这一点。看看我对这个问题的回答。非常相似。
如何访问linq表达式的where子句中的子实体's属性?