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());
}