狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

.NET 驗證組件 FluentValidation

freeflydom
2024年9月3日 20:37 本文熱度 809

前言

一個 .NET 驗證框架,支持鏈式操作,易于理解,功能完善,組件內(nèi)提供十幾種常用驗證器,可擴展性好,支持自定義驗證器,支持本地化多語言。

項目介紹

FluentValidation 是一個開源的 .NET 庫,用于驗證對象的屬性。

它提供了一種簡單而強大的方式來定義和執(zhí)行驗證規(guī)則,使驗證邏輯的編寫和維護更加直觀和便捷。

相較于傳統(tǒng)的數(shù)據(jù)注解,F(xiàn)luentValidation 提供了更靈活、可擴展的驗證規(guī)則定義方式。

通過流暢且易于理解的語法,它顯著提升了代碼的可讀性和可維護性。

項目使用

FluentValidation 11 支持以下平臺:

.NET Core 3.1、.NET 5、.NET 6、.NET 7、.NET 8、.NET Standard 2.0

1、安裝FluentValidation

通過 NuGet 包管理器或 dotnet CLI 進行安裝。

dotnet add package FluentValidation

或NuGet 包管理器

2、Program.cs

using FluentValidation;

using FluentValidation.AspNetCore;

using MicroElements.Swashbuckle.FluentValidation.AspNetCore;


var builder = WebApplication.CreateBuilder(args);

var services = builder.Services;


// Asp.Net stuff

services.AddControllers();

services.AddEndpointsApiExplorer();


// Add Swagger

services.AddSwaggerGen();


// Add FV

services.AddFluentValidationAutoValidation();

services.AddFluentValidationClientsideAdapters();


// Add FV validators

services.AddValidatorsFromAssemblyContaining<Program>();


// Add FV Rules to swagger

services.AddFluentValidationRulesToSwagger();


var app = builder.Build();


// Use Swagger

app.UseSwagger();

app.UseSwaggerUI();


app.MapControllers();


app.Run();

3、Startup.cs

public void ConfigureServices(IServiceCollection services)

{

    // Asp.net stuff

    services.AddControllers();

    

    // HttpContextValidatorRegistry requires access to HttpContext

    services.AddHttpContextAccessor();


    // Register FV validators

    services.AddValidatorsFromAssemblyContaining<Startup>(lifetime: ServiceLifetime.Scoped);


    // Add FV to Asp.net

    services.AddFluentValidationAutoValidation();


    // Add swagger

    services.AddSwaggerGen(c =>

    {

        c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });

    });


    // [Optional] Add INameResolver (SystemTextJsonNameResolver will be registered by default)

    // services.AddSingleton<INameResolver, CustomNameResolver>();


    // Adds FluentValidationRules staff to Swagger. (Minimal configuration)

    services.AddFluentValidationRulesToSwagger();


    // [Optional] Configure generation options for your needs. Also can be done with services.Configure<SchemaGenerationOptions>

    // services.AddFluentValidationRulesToSwagger(options =>

    // {

    //     options.SetNotNullableIfMinLengthGreaterThenZero = true;

    //     options.UseAllOffForMultipleRules = true;

    // });


    // Adds logging

    services.AddLogging(builder => builder.AddConsole());

}


public void Configure(IApplicationBuilder app, IHostingEnvironment env)

{

    app.UseRouting();


    app.UseEndpoints(endpoints =>

    {

        endpoints.MapControllers();

    });


    // Adds swagger

    app.UseSwagger();


    // Adds swagger UI

    app.UseSwaggerUI(c =>

    {

        c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");

    });

}

5、支持的驗證器

INotNullValidator(NotNull)

INotEmptyValidator(NotEmpty)

ILengthValidator(對于字符串:Length、MinimumLength、MaximumLength、ExactLength;對于數(shù)組:MinItems、MaxItems)

IRegularExpressionValidator(Email、Matches)

IComparisonValidator(GreaterThan、GreaterThanOrEqual、LessThan、LessThanOrEqual)

IBetweenValidator(InclusiveBetween、ExclusiveBetween)

6、可擴展

可以將 FluentValidationRule 注冊到 ServiceCollection 中。

自定義規(guī)則名稱將替換具有相同名稱的默認規(guī)則。

可以通過 FluentValidationRules.CreateDefaultRules() 獲取默認規(guī)則的完整列表。

默認規(guī)則列表: Required(必填) NotEmpty(非空) Length(長度) Pattern(模式) Comparison(比較) Between(區(qū)間)

new FluentValidationRule("Pattern")

{

    Matches = propertyValidator => propertyValidator is IRegularExpressionValidator,

    Apply = context =>

    {

        var regularExpressionValidator = (IRegularExpressionValidator)context.PropertyValidator;

        context.Schema.Properties[context.PropertyKey].Pattern = regularExpressionValidator.Expression;

    }

}

7、Swagger 模型和驗證器

public class Sample

{

    public string PropertyWithNoRules { get; set; }


    public string NotNull { get; set; }

    public string NotEmpty { get; set; }

    public string EmailAddress { get; set; }

    public string RegexField { get; set; }


    public int ValueInRange { get; set; }

    public int ValueInRangeExclusive { get; set; }


    public float ValueInRangeFloat { get; set; }

    public double ValueInRangeDouble { get; set; }

}


public class SampleValidator : AbstractValidator<Sample>

{

    public SampleValidator()

    {

        RuleFor(sample => sample.NotNull).NotNull();

        RuleFor(sample => sample.NotEmpty).NotEmpty();

        RuleFor(sample => sample.EmailAddress).EmailAddress();

        RuleFor(sample => sample.RegexField).Matches(@"(\d{4})-(\d{2})-(\d{2})");


        RuleFor(sample => sample.ValueInRange).GreaterThanOrEqualTo(5).LessThanOrEqualTo(10);

        RuleFor(sample => sample.ValueInRangeExclusive).GreaterThan(5).LessThan(10);


        // WARNING: Swashbuckle implements minimum and maximim as int so you will loss fraction part of float and double numbers

        RuleFor(sample => sample.ValueInRangeFloat).InclusiveBetween(1.1f, 5.3f);

        RuleFor(sample => sample.ValueInRangeDouble).ExclusiveBetween(2.2, 7.5f);

    }

}

8、包含驗證器

public class CustomerValidator : AbstractValidator<Customer>

{

    public CustomerValidator()

    {

        RuleFor(customer => customer.Surname).NotEmpty();

        RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name");


        Include(new CustomerAddressValidator());

    }

}


internal class CustomerAddressValidator : AbstractValidator<Customer>

{

    public CustomerAddressValidator()

    {

        RuleFor(customer => customer.Address).Length(20, 250);

    }

}

高級用法

1、異步驗證

RuleForAsync(x => x.UserCode).MustAsync(async (usercode, cancellation) =>

{

    var code = await _userService.IsUserNameUniqueAsync(usercode);

    return code;

}).WithMessage("用戶編碼已存在");

2、條件驗證

When(x => x.IsAdmin, () =>

{

    RuleFor(x => x.Super).NotEmpty().WithMessage("管理必須是超級管理員");

});

3、自定義驗證規(guī)則

RuleFor(x => x.Number).Custom((value, context) =>

{

    if (value < 10 || value > 1000)

    {

        context.AddFailure("數(shù)字必須在10 到1000之間");

    }

});

4、自定義錯誤消息

RuleFor(x => x.UserName).NotEmpty().WithMessage("用戶名稱不能為空")

       .Matches(@"^\d{6}$").WithMessage("請輸入有效的6位數(shù)字用戶名稱"); 

項目地址

GitHub:https://github.com/FluentValidation/FluentValidation

總結

FluentValidation 是一個優(yōu)雅且功能強大的驗證庫,它在提升代碼可讀性和可維護性的同時,保持了高度的靈活性。

無論是簡單的驗證需求還是復雜的業(yè)務規(guī)則,F(xiàn)luentValidation 都能讓我們輕松確保數(shù)據(jù)的有效性。

如果大家項目中有驗證需求的,可以試一試,提高開發(fā)效率。

轉自https://www.cnblogs.com/1312mn/p/18393208



該文章在 2024/9/4 10:19:30 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運作、調(diào)度、堆場、車隊、財務費用、相關報表等業(yè)務管理,結合碼頭的業(yè)務特點,圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved