Skip to content

Instantly share code, notes, and snippets.

@msx752
Last active August 24, 2024 14:21
Show Gist options
  • Save msx752/64129c819d6015883a60c7905691de63 to your computer and use it in GitHub Desktop.
Save msx752/64129c819d6015883a60c7905691de63 to your computer and use it in GitHub Desktop.
Example code to suppress ModelStateInvalidFilter
// Example code to suppress ModelStateInvalidFilter
services.Configure<ApiBehaviorOptions>(options =>
{
options.SuppressModelStateInvalidFilter = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment