SonicGD.FluentValidation.Blazor
5.0.0-fix.2
dotnet add package SonicGD.FluentValidation.Blazor --version 5.0.0-fix.2
NuGet\Install-Package SonicGD.FluentValidation.Blazor -Version 5.0.0-fix.2
<PackageReference Include="SonicGD.FluentValidation.Blazor" Version="5.0.0-fix.2" />
paket add SonicGD.FluentValidation.Blazor --version 5.0.0-fix.2
#r "nuget: SonicGD.FluentValidation.Blazor, 5.0.0-fix.2"
// Install SonicGD.FluentValidation.Blazor as a Cake Addin #addin nuget:?package=SonicGD.FluentValidation.Blazor&version=5.0.0-fix.2&prerelease // Install SonicGD.FluentValidation.Blazor as a Cake Tool #tool nuget:?package=SonicGD.FluentValidation.Blazor&version=5.0.0-fix.2&prerelease
Fluent Validation-powered Blazor component for validating standard <EditForm>
https://github.com/ryanelian/FluentValidation.Blazor/blob/master/README.MD
This library is a direct replacement to the default Blazor <DataAnnotationValidator> with zero configuration required ⚡️ in the application code base.
The <FluentValidation.FluentValidator> component automatically detects the Model data type used by the parent <EditForm> then attempts to acquire the corresponding FluentValidation.IValidator<T> for that model data type.
For this reason, in addition to coding the usual FluentValidation.AbstractValidator<T> Fluent Validation implementation, you are required to register the FluentValidation.IValidator<T> implementation in the Startup.cs Service Provider (Dependency Injection).
This effectively allows you, dear programmer, to inject required services to your validation implementations for writing amazing custom validation methods! 🔥
Validator parameter may also be passed directly to the component to inline the AbstractValidator implementation instead of relying on .NET Core DI.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
-
.NETCoreApp 3.1
- FluentValidation (>= 10.0.2)
- Microsoft.AspNetCore.Components.Forms (>= 3.1.14)
- Microsoft.Extensions.Options (>= 5.0.0)
-
net5.0
- FluentValidation (>= 10.0.2)
- Microsoft.AspNetCore.Components.Forms (>= 5.0.5)
- Microsoft.Extensions.Options (>= 5.0.0)
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 |
---|---|---|
5.0.0-fix.2 | 181 | 4/13/2021 |
5.0.0-fix | 437 | 12/17/2020 |
Version 5.0.0 BREAKING CHANGES:
- Package sub-dependency Microsoft.AspNetCore.Components.Web is changed to Microsoft.AspNetCore.Components.Forms to allow using the library in Xamarin Blazor project!
- Package is now compatible with both .NET 5.0 and .NET Core 3.1