I have an ASP.NET Core API (.Net Core 2.1) and I implemented an Action Filter using this article
In my Model, I use Data Annotations to validate the model, and I added the ValidateModel attribute for the Action in my Controller.
[HttpPost("CreateShipment")]
[ValidateModel]
public IActionResult CreateShipment([FromBody] CreateShipmentRequest request)
{
if (ModelState.IsValid)
{
//Do something
}
return Ok();
}
I used Postman to test this, and my Action Filter gets called only if the Model is valid. If my request is missing a required field or some value is out of range, Action Filter doesn't get called. Instead I receive a 400 bad request with the model state in the response.
I implemented the Action Filter because I want to customize my model validation error. My understanding is that Action Filters get called at the time of model binding. Can someone help me figure out why this is happening and how to get the Action Filter to work?
UPDATE: I found the solution 2 seconds after posting the question, and the link @Silvermind posted below is great info too.
I added the following line to my Startup.cs
services.Configure<ApiBehaviorOptions>(options =>
{
options.SuppressModelStateInvalidFilter = true;
});
It's well documented here on the Microsoft site. https://learn.microsoft.com/en-us/aspnet/core/web-api/index?view=aspnetcore-2.1#automatic-http-400-responses
[ApiController]attribute is automatically placed on the controller. That does some things automatically; removing it solves this problem. Take a look at this post for more information: Exploring the ApiControllerAttribute and its features for ASP.NET Core MVC 2.1