在我安装 ASP.NET MVC 1.0 RTM 之前,该调用运行良好。
Error: CS0121: The call is ambiguous between the following methods or properties
代码片段
<%Html.RenderAction("ProductItemList", "Product"); %>
动作方法
public ActionResult ProductItemList()
{
return View("~/Views/Product/ProductItemList.ascx", _repository.GetProductList().ToList());
}