码迷,mamicode.com
首页 > Web开发 > 详细

ASP NET Core ---FluentValidation

时间:2018-09-04 23:31:00      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:bubuko   htm   not   tran   image   图片   uml   com   max   

官方文档:https://fluentvalidation.net/

 

一、安装:

技术分享图片

 

 二、应用:

         1、建立PostValidator:

   public class PostValidator:AbstractValidator<PostDTO>
    {
        public PostValidator()
        {
            RuleFor(x => x.Author).NotEmpty()
                .WithName("作者").WithMessage("{PropertyName}是必须填写的")
                .MaximumLength(50).WithMessage("{PropertyName}的最大长度是{MaxLength}");
        }
    }

          2、aspnetcore注册:

services.AddTransient<IValidator<PostDTO>, PostValidator>();

 

 

参考资料:https://v.qq.com/x/page/z0763a2x3j5.html

 

ASP NET Core ---FluentValidation

标签:bubuko   htm   not   tran   image   图片   uml   com   max   

原文地址:https://www.cnblogs.com/fuyouchen/p/9588987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!