像下面这样的简单操作,有没有办法声明 thingy 不能为空,如果是,ModelState.IsValid 将为假?或者每个动作也应该检查一个空的东西?
public HttpResponseMessage DoSomething(Thingy thingy)
{
if (ModelState.IsValid)
{
// We never get here if thingy is null
}
}