Validator.AspNetCore 2.0.1

dotnet add package Validator.AspNetCore --version 2.0.1
                    
NuGet\Install-Package Validator.AspNetCore -Version 2.0.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="Validator.AspNetCore" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Validator.AspNetCore" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Validator.AspNetCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Validator.AspNetCore --version 2.0.1
                    
#r "nuget: Validator.AspNetCore, 2.0.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.
#:package Validator.AspNetCore@2.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Validator.AspNetCore&version=2.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Validator.AspNetCore&version=2.0.1
                    
Install as a Cake Tool

Validator.AspNetCore

Simple, fluent interface validation implementation for ASP.NET Core.

Installing Validator.AspNetCore

You should install Mediator.CodeGen with NuGet or the .NET Core command line interface:

Install-Package Validator.AspNetCore

or

dotnet add package Validator.AspNetCore

Getting Started

Validator.AspNetCore supports Microsoft.Extensions.DependencyInjection.Abstractions directly:

services.AddValidator(assembly1, assembly2);

(this registers an IValidator, and any concrete IValidator<> implementations, as singletons);

OR

services.AddValidator(ServiceLifetime.Scoped, assembly1, assembly2);

(this registers an IValidator, and any concrete IValidator<> implementations, with the desired ServiceLifetime);

Usage (see /samples directory for more)
using Validator.AspNetCore;

public sealed class PersonValidator : AbstractValidator<Person>
{
   public PersonValidator()
   {
      this
         .RuleFor(x => x.Id)
         .NotEmpty()
         .GreaterThanOrEqualTo(0);

      this
         .RuleFor(x => x.FirstName)
         .NotEmpty()
         .MaximumLength(100);
   }
}
Custom Rules
using Validator.AspNetCore;
using Validator.AspNetCore.Rules;

public static class RuleBuilderExtensions
{
    private const int FunnyIdValue = 69;

    // add custom rules by extending the IRuleBuilder<,> interface
    public static IRuleBuilder<T, int> RejectFunnyId<T>(this IRuleBuilder<T, int> ruleBuilder)
    {
        ruleBuilder.AddRule((propertyValue, validationContext) =>
        {
            if (propertyValue != FunnyIdValue)
            {
                return;
            }

            validationContext.AddFailure(new ValidationFailure(
               PropertyName: validationContext.PropertyName,
               ErrorCode: "RejectFunnyIdRule",
               ErrorMessage: $"{validationContext.PropertyName} cannot be equal to {FunnyIdValue}."));
        });

        return ruleBuilder;
    }
}
Validation
// Inject IValidator to manually validate
app
    .MapPost("/user", async (
        [FromBody] CreateUserRequest request,
        [FromServices] IValidator validator,
        CancellationToken cancellationToken) =>
    {
        var validationResult = await validator.ValidateAsync(request, cancellationToken);
        ...
    });

// Use AddValidation() to add an IEndpointFilter that validates the parameters automatically
app
    .MapPost("/user", async (
        [FromBody] CreateUserRequest request,
        CancellationToken cancellationToken) =>
    {
        ...
    })
    .AddValidation(options =>
    {
        // specify how to generate a response when validation fails
        options.OnFailure = validationFailures => 
    });
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

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.1 207 8/6/2025