Trellis.FluentValidation
3.0.0-alpha.342
See the version list below for details.
dotnet add package Trellis.FluentValidation --version 3.0.0-alpha.342
NuGet\Install-Package Trellis.FluentValidation -Version 3.0.0-alpha.342
<PackageReference Include="Trellis.FluentValidation" Version="3.0.0-alpha.342" />
<PackageVersion Include="Trellis.FluentValidation" Version="3.0.0-alpha.342" />
<PackageReference Include="Trellis.FluentValidation" />
paket add Trellis.FluentValidation --version 3.0.0-alpha.342
#r "nuget: Trellis.FluentValidation, 3.0.0-alpha.342"
#:package Trellis.FluentValidation@3.0.0-alpha.342
#addin nuget:?package=Trellis.FluentValidation&version=3.0.0-alpha.342&prerelease
#tool nuget:?package=Trellis.FluentValidation&version=3.0.0-alpha.342&prerelease
Trellis.FluentValidation
A small bridge that turns FluentValidation output into Trellis results.
Installation
dotnet add package Trellis.FluentValidation
Quick Example
using FluentValidation;
using Trellis.FluentValidation;
public sealed record CreateUserRequest(string Email);
var validator = new InlineValidator<CreateUserRequest>();
validator.RuleFor(x => x.Email).NotEmpty().EmailAddress();
var result = validator.ValidateToResult(new CreateUserRequest("ada@example.com"));
Mediator Integration
The Mediator wire-up moved to the dedicated Trellis.Mediator.FluentValidation package in v3 so consumers that only need the standalone helpers don't take a Mediator dependency. Install that package to plug FluentValidation into the Trellis.Mediator validation stage:
dotnet add package Trellis.Mediator.FluentValidation
using Trellis.Mediator;
using Trellis.Mediator.FluentValidation;
builder.Services.AddMediator(opts => opts.ServiceLifetime = ServiceLifetime.Scoped);
builder.Services.AddTrellisBehaviors();
builder.Services.AddTrellisFluentValidation();
builder.Services.AddScoped<IValidator<MyCommand>, MyCommandValidator>();
The adapter normalizes FluentValidation property names (Metadata.Reference, Lines[0].Memo) into RFC 6901 JSON Pointers (/Metadata/Reference, /Lines/0/Memo) using JsonPointerNormalizer, which is now part of the public surface of Trellis.FluentValidation.
Key Features
- Convert
ValidationResultintoResult<T>with Trellis validation errors. - Validate inline or through reusable validator classes.
JsonPointerNormalizer.ToJsonPointer(...)projects FluentValidation property names into RFC 6901 JSON Pointers — public so third-party adapters can reuse the normalization rules.- Plug into the
Trellis.Mediatorpipeline via the companionTrellis.Mediator.FluentValidationpackage. - Keep third-party validation libraries inside the same Result pipeline as the rest of your app.
Documentation
Part of Trellis
This package is part of the Trellis framework.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- FluentValidation (>= 12.1.1)
- Microsoft.Extensions.DependencyInjection (>= 10.0.7)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.7)
- Trellis.Core (>= 3.0.0-alpha.342)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Trellis.FluentValidation:
| Package | Downloads |
|---|---|
|
Trellis.Mediator.FluentValidation
Mediator pipeline adapter that plugs FluentValidation validators into the Trellis Mediator validation stage. Open-generic IMessageValidator<TMessage> that resolves every IValidator<TMessage> registered in DI and aggregates failures into a single Error.InvalidInput response. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.0-alpha.419 | 39 | 6/24/2026 |
| 3.0.0-alpha.418 | 74 | 6/23/2026 |
| 3.0.0-alpha.417 | 52 | 6/23/2026 |
| 3.0.0-alpha.397 | 73 | 6/18/2026 |
| 3.0.0-alpha.396 | 60 | 6/18/2026 |
| 3.0.0-alpha.394 | 73 | 6/18/2026 |
| 3.0.0-alpha.385 | 66 | 6/15/2026 |
| 3.0.0-alpha.382 | 63 | 6/12/2026 |
| 3.0.0-alpha.372 | 60 | 6/10/2026 |
| 3.0.0-alpha.360 | 79 | 6/7/2026 |
| 3.0.0-alpha.342 | 96 | 6/5/2026 |
| 3.0.0-alpha.337 | 66 | 6/3/2026 |
| 3.0.0-alpha.336 | 56 | 6/3/2026 |
| 3.0.0-alpha.304 | 73 | 5/29/2026 |
| 3.0.0-alpha.158 | 84 | 4/5/2026 |
| 3.0.0-alpha.157 | 71 | 4/4/2026 |
| 3.0.0-alpha.140 | 69 | 3/30/2026 |
| 3.0.0-alpha.137 | 68 | 3/27/2026 |
| 3.0.0-alpha.135 | 62 | 3/26/2026 |
| 3.0.0-alpha.127 | 60 | 3/23/2026 |