在 Web API 或 ASP.NET MVC 应用程序中,我可以通过以下方式添加全局验证过滤器 -
GlobalConfiguration.Configuration.Filters.Add(new ModelValidationFilterAttribute());
和
public class ModelValidationFilterAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(HttpActionContext actionContext)
{
if (actionContext.ModelState.IsValid == false)
{
actionContext.Response = actionContext.Request.CreateErrorResponse(HttpStatusCode.BadRequest, actionContext.ModelState);
}
}
}
但我想要有许多适用于我选择的控制器的验证过滤器?