1

結果をフィルタリングするドロップダウンを作成しました。これは最初はうまく機能しますが、ユーザーが別のオプションを選択すると、フィルタリングされた結果がフィルタリングされます。再度フィルタリングする前に結果をクリアする方法はありますか?

かみそり

@using (Html.BeginForm("Index", "Admin", FormMethod.Get))
{
  @Html.DropDownList("category", (SelectList)ViewBag.Categories, "--Select One--") 
  <input type="submit" value="Filter" /> 
}

サーバーコード

public ViewResult Index(string category, int page = 1)
{
    var categoryList = categoriesRepository.Categories.Select(c => c.CategoryName).Distinct();
    ViewBag.Categories = new SelectList(categoryList.AsEnumerable());

    var viewModel = new ProductsListViewModel
    {
        Products = repository.Products
                    .Where(p => category == null || p.Category == category)
                    .OrderBy(p => p.ProductID)
                    .Skip((page - 1) * PageSize)
                    .Take(PageSize),
        PagingInfo = new PagingInfo
                    {
                        CurrentPage = page,
                        ItemsPerPage = PageSize,
                        TotalItems = category == null
                                    ? repository.Products.Count()
                                    : repository.Products.Where(e => e.Category == category).Count()
                    },
        CurrentCategory = category
    };
    return View(viewModel);
}
4

0 に答える 0