1

我可以在不使用可为空整数的情况下使用 T4MVC 呈现不带查询参数的 url 吗?

public virtual ActionResult GetSchoolsForDistrict(int districtId)
        {
            return Json(_schoolsService.GetSchoolsByDistrict(districtId.Value), JsonRequestBehavior.AllowGet);
        }
4

1 回答 1

2

您应该能够在没有任何参数的情况下调用它。例如

Html.ActionLink(MVC.Schools.GetSchoolsForDistrict())

这是因为 T4MVC 总是生成一个没有参数的重载。

于 2012-04-23T23:11:24.497 回答