自动检查not null'ess的动作参数(ASP.Net MVC 4)

时间:2012-12-17 16:41:52

标签: asp.net-mvc-4

如果参数为null,是否有一种开箱即用的方法可以使MVC抛出异常。

我想要类似的东西:

public ActionResult Index([NotNull] string productId) {
    ...
}

因此,我宁愿用NotNull来装饰参数,而不是使用非null检查内联或使用代码契约。

0 个答案:

没有答案