MininalApis.Validators
1.0.0
dotnet add package MininalApis.Validators --version 1.0.0
NuGet\Install-Package MininalApis.Validators -Version 1.0.0
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="MininalApis.Validators" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MininalApis.Validators --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MininalApis.Validators, 1.0.0"
#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 MininalApis.Validators as a Cake Addin #addin nuget:?package=MininalApis.Validators&version=1.0.0 // Install MininalApis.Validators as a Cake Tool #tool nuget:?package=MininalApis.Validators&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MinimalApis.Validators
The easiest way to validate web apis from .NET6 MinimalApis.
Inspired in an example of Nick Chapsa.
<b>Thank's a lot Nick Chapsa !!!</b>
Nuget Packages
Core Library
- MinimalApis.Validators - Validator using DataAnnotation.
- FluentEmail.Validators.FluentValidation - Validator using package FluentValidation.
How can use it
Only use the key <b>WithValidator<></b> in your endpoint and finish:
app.MapPost("/customer",(Customer customer) =>
{
return Results.Created(nameof(customer), customer);
}).WithValidator<Customer>();
Basic Usage DataAnnotation
var app = WebApplication.Create(args);
app.MapPost("/customer",(Customer customer) =>
{
return Results.Created(nameof(customer), customer);
}).WithValidator<Customer>();
app.Run("http://localhost:5010");
public class Customer
{
[Required]
public string Name { get; set; } = "";
[Required]
public int Age { get; set; }
[EmailAddress]
public string Email { get; set; } = "";
}
More details in source example Example With DataAnnotation
Basic Usage FluentValidation
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddValidatorsFromAssembly(typeof(Program).Assembly);
var app = builder.Build();
app.MapPost("/customer",(Customer customer) =>
{
return Results.Created(nameof(customer),customer);
}).WithValidator<Customer>();
app.Run("http://localhost:5005");
public class Customer
{
public string Name { get; set; } = "";
public int Age { get; set; }
public string Email { get; set; } = "";
}
public class CustomerValidator : AbstractValidator<Customer>
{
public CustomerValidator()
{
RuleFor(x => x.Name).NotEmpty();
RuleFor(x => x.Age).GreaterThan(0);
RuleFor(x => x.Email).EmailAddress();
}
}
More details in source example Example With FluentValidation
Credits and contributors
<b>Special credit to Nick Chapsa to made it's possible.</b>
Maintained by Junior Porfirio - follow me on twitter @juniorporfirio for updates.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- FluentValidation (>= 10.3.4)
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.0.0 | 465 | 11/10/2021 |