LSolutions.Api.FluentValidation.AspNetCore 1.1.3

dotnet add package LSolutions.Api.FluentValidation.AspNetCore --version 1.1.3
NuGet\Install-Package LSolutions.Api.FluentValidation.AspNetCore -Version 1.1.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LSolutions.Api.FluentValidation.AspNetCore" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LSolutions.Api.FluentValidation.AspNetCore --version 1.1.3
#r "nuget: LSolutions.Api.FluentValidation.AspNetCore, 1.1.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LSolutions.Api.FluentValidation.AspNetCore as a Cake Addin
#addin nuget:?package=LSolutions.Api.FluentValidation.AspNetCore&version=1.1.3

// Install LSolutions.Api.FluentValidation.AspNetCore as a Cake Tool
#tool nuget:?package=LSolutions.Api.FluentValidation.AspNetCore&version=1.1.3

LSolutions.Api.FluentValidation

Custom FluentValidation translations for most built-in validators. BaseValidationApiController implemented with common error responses. Return ErrorModel with ModelState fields errors and with array of custom errors.

Build status contributions welcome

Packed as two NuGet packages. Core project with translations and AspNetCore project:

  • LSolutions.Api.FluentValidation NuGet
  • LSolutions.Api.FluentValidation.AspNetCore NuGet

Usage

  1. Add code below in your Startup.cs
    public void ConfigureServices(IServiceCollection services)
	{
		services
			.AddControllers(configure =>
			{
				configure.Filters.Add(typeof(ValidateModelActionFilter));
			})

			// Fluent validation
			.AddFluentValidation(fv =>
			{
				// Register fluent validation as only validation library that executes
				fv.DisableDataAnnotationsValidation = true;

				fv.ImplicitlyValidateChildProperties = true;

				fv.RegisterValidatorsFromAssemblyContaining<IValidatorResult>();
				fv.RegisterValidatorsFromAssemblyContaining<Startup>();
			});
			
		
		// Fluent validation localization
		// https://fluentvalidation.net/localization
		ValidatorOptions.Global.LanguageManager = new ApiEnglishLanguageManager();
		ValidatorOptions.Global.LanguageManager.Culture = new CultureInfo("en");
}
  1. Extend ApiEnglishLanguageManager with translations for your custom validators.
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 272 3/3/2023
1.1.2 389 8/18/2022
1.1.0 351 9/18/2021
1.0.0 287 5/24/2021

- net7.0 target framework