标签: asp.net-web-api asp.net-core-mvc .net-core asp.net-core-1.0
我的所有控制器方法都将此作为第一行:
if (!ModelState.IsValid) return BadRequest(ModelState);
我可以在请求到达控制器之前在管道中发生这种情况吗?这样我可以假设该模型对所有请求都有效。
我使用System.ComponentModel.DataAnnotations命名空间中的东西来注释我的DTO类。
System.ComponentModel.DataAnnotations