使用asp.net mvc 3中的复合实体模型在app中按类别导航

时间:2012-12-27 07:09:47

标签: asp.net asp.net-mvc asp.net-mvc-3 linq entity-relationship

我需要按类别过滤产品并提供每个类别的链接 这是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”。此操作方法的单元测试也失败 没有添加分类过滤一切正常。

我认为问题出在我从_i​​temsRepository获取“Category”属性的行中,(导致“filter”单元测试也失败):

_itemsRepository.Product.Category  

是不是?如果是我想知道是否有任何其他方式来访问“类别”属性?
提前谢谢。

修改:
消息错误是由错误的路由引起的 仍然无法按类别选择项目,问题肯定与此行相关:

Items = _itemsRepository.GetItems()
                .Where(i => i.Product.Category == category || i.Product.Category == null)

1 个答案:

答案 0 :(得分:1)

您使用实体框架作为您的ORM吗?如果是这样,实体框架不会自动为您加载相关对象。你必须告诉它你想要加载对象。您可以使用Include()方法来急切加载属性。看看我对这个问题的回答。非常相似。

How to access child entity's property in a where clause of linq expression?