FluentValidation.AutoValidation icon indicating copy to clipboard operation
FluentValidation.AutoValidation copied to clipboard

SharpGrip FluentValidation AutoValidation is an extension of the FluentValidation library enabling automatic asynchronous validation in MVC controllers and minimal APIs (endpoints).

Results 25 FluentValidation.AutoValidation issues
Sort by recently updated
recently updated
newest added

By default, AutoValidation always writes validation error into response in JSON format, which is unnacceptable when you need to return an HTML-page with errors (that contains [elements with `asp-validation-for` tag...

- Mark relevant methods and properties with `[RequiresUnreferencedCode]` or `[DynamicDependency]` to support Ahead-Of-Time (AOT) compilation. - Add `` property to project files for compatibility metadata. - Suppress warnings where validators...

I've been trying to use this project with a minimal API and I've been playing with making it NativeAOT. I found that there's a weird issue and got curious to...

question