FunctionalDdd.FluentValidation 1.1.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package FunctionalDdd.FluentValidation --version 1.1.1
NuGet\Install-Package FunctionalDdd.FluentValidation -Version 1.1.1
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="FunctionalDdd.FluentValidation" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FunctionalDdd.FluentValidation --version 1.1.1
#r "nuget: FunctionalDdd.FluentValidation, 1.1.1"
#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 FunctionalDdd.FluentValidation as a Cake Addin
#addin nuget:?package=FunctionalDdd.FluentValidation&version=1.1.1

// Install FunctionalDdd.FluentValidation as a Cake Tool
#tool nuget:?package=FunctionalDdd.FluentValidation&version=1.1.1

Fluent Validation extension

This library will help convert Fluent Validation Errors to FunctionalDdd ValidationError.

Example:

 public static Result<User, Error> TryCreate(FirstName firstName, LastName lastName, EmailAddress email)
{
  var user = new User(firstName, lastName, email);
  return s_validator.ValidateToResult(user);
}

static readonly InlineValidator<User> s_validator = new()
{
  v => v.RuleFor(x => x.FirstName).NotNull(),
  v => v.RuleFor(x => x.LastName).NotNull(),
  v => v.RuleFor(x => x.Email).NotNull(),
};
Product Compatible and additional computed target framework versions.
.NET 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. 
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
2.0.0-alpha.38 35 4/24/2024
2.0.0-alpha.33 46 4/17/2024
2.0.0-alpha.26 59 4/9/2024
2.0.0-alpha.21 64 4/1/2024
2.0.0-alpha.19 56 3/5/2024
2.0.0-alpha.18 56 2/28/2024
2.0.0-alpha.17 45 2/26/2024
2.0.0-alpha.15 68 1/30/2024
2.0.0-alpha.8 50 1/27/2024
2.0.0-alpha.6 94 1/5/2024
1.1.1 742 11/15/2023
1.1.0-alpha.32 95 11/2/2023
1.1.0-alpha.30 189 10/31/2023
1.1.0-alpha.28 77 10/28/2023
1.1.0-alpha.27 75 10/28/2023
1.1.0-alpha.24 57 10/20/2023
1.1.0-alpha.23 73 10/13/2023
1.1.0-alpha.21 79 10/1/2023
1.1.0-alpha.20 63 9/30/2023
1.1.0-alpha.19 74 9/30/2023
1.1.0-alpha.18 84 9/29/2023
1.1.0-alpha.17 63 9/22/2023
1.1.0-alpha.13 67 9/16/2023
1.1.0-alpha.4 124 6/9/2023
1.1.0-alpha.3 70 6/8/2023
1.0.1 599 5/12/2023
0.1.0-alpha.40 97 4/6/2023
0.1.0-alpha.39 102 4/3/2023
0.1.0-alpha.38 125 4/2/2023
0.1.0-alpha.37 107 3/31/2023
0.1.0-alpha.35 102 3/29/2023
0.1.0-alpha.34 86 3/28/2023
0.1.0-alpha.32 118 3/18/2023
0.1.0-alpha.30 116 3/11/2023
0.1.0-alpha.27 114 3/7/2023
0.1.0-alpha.24 110 2/15/2023
0.1.0-alpha.22 99 2/15/2023
0.1.0-alpha.20 109 2/13/2023
0.1.0-alpha.19 76 2/13/2023
0.0.1-alpha.14 128 1/4/2023
0.0.1-alpha.4 113 12/30/2022
0.0.1-alpha 564 12/21/2022