MatValidator 1.4.1

dotnet add package MatValidator --version 1.4.1
                    
NuGet\Install-Package MatValidator -Version 1.4.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="MatValidator" Version="1.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MatValidator" Version="1.4.1" />
                    
Directory.Packages.props
<PackageReference Include="MatValidator" />
                    
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 MatValidator --version 1.4.1
                    
#r "nuget: MatValidator, 1.4.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 MatValidator@1.4.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=MatValidator&version=1.4.1
                    
Install as a Cake Addin
#tool nuget:?package=MatValidator&version=1.4.1
                    
Install as a Cake Tool

MatValidator

MatValidator is a .NET 9 library designed to validate mathematical expressions and ensure they conform to specific rules or formats.

Features

  • Validate mathematical expressions for syntax correctness.
  • Support for custom validation rules.
  • Lightweight and easy to integrate into .NET applications.

Features

  • Validate mathematical expressions for syntax correctness.
  • Support for custom validation rules.
  • Lightweight and easy to integrate into .NET applications.

Custom Validation Rules

You can define custom validation rules to extend the functionality of MatValidator.

Sample

using MatValidator;

var user = new User("", "janXd", 200, new(""));

Console.WriteLine("------------sample with builder---------");

var validator = new ValidatorBuilder<User>();
var validator2 = new ValidatorBuilder<UserInfo>();

validator
    .RuleFor(x => x.FirstName)
    .NotEmpty()
    .Unless(x => true)
    .OverridePropertyName("First Name")
    .MinLength(2);

validator
    .RuleFor(x => x.Email)
    .IsEmail();

validator.RuleFor(x => x.Age)
    .Range(1, 120);

validator2
    .RuleFor(x => x.Info)
    .NotEmpty()
    .MinLength(2);

validator
    .RuleFor(x => x.UserInfo)
    .SetValidator(validator2);


var result = validator.Validate(user);
Console.WriteLine(result.IsValid);
Console.WriteLine(string.Join($",{Environment.NewLine}", result.ErrorMessages));

Console.WriteLine("------------sample with class---------");

var userValidator = new UserValidator();

result = userValidator.Validate(user);
Console.WriteLine(result.IsValid);
Console.WriteLine(string.Join($",{Environment.NewLine}", result.ErrorMessages));


public record User(string FirstName, string Email, int Age, UserInfo UserInfo);
public record UserInfo(string Info);


public class UserValidator : AbstractValidator<User>
{
    public UserValidator()
    {
        RuleFor(x => x.FirstName)
            .NotEmpty()
            .MinLength(2);

        RuleFor(x => x.Email)
            .IsEmail();

        RuleFor(x => x.Age)
            .Range(1, 120);

        RuleFor(x => x.UserInfo)
            .SetValidator(new UserInfoValidator());
    }
}


public class UserInfoValidator : AbstractValidator<UserInfo>
{
    public UserInfoValidator()
    {
        RuleFor(x => x.Info)
            .NotEmpty()
            .MinLength(2);
    }
}

License

This project is licensed under the MIT License.

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.

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.4.1 167 8/15/2025
1.3.1 206 5/6/2025
1.2.6 124 5/3/2025
1.2.5 115 5/2/2025
1.2.4 164 4/27/2025
1.2.2 113 4/26/2025
1.0.9 206 4/23/2025