第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何驗(yàn)證與其他字段相關(guān)的字段

如何驗(yàn)證與其他字段相關(guān)的字段

C#
吃雞游戲 2023-09-09 16:17:17
上課了Report。我想要 makeComment和ReasonIdsrequired if 的值Score小于 4。我不能使用屬性驗(yàn)證,因?yàn)槟悴荒苁褂米侄巫鳛閷傩詤?shù)。我如何在 ASP.NET MVC 核心應(yīng)用程序中驗(yàn)證這些字段?public class Report{    public int Score { get; set; }    public string Comment { get; set; }    public int[] ReasonIds { get; set; }}
查看完整描述

1 回答

?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

這應(yīng)該會(huì)給你你正在尋找的東西。


public class Report : ValidationAttribute

    {

        public int Score { get; set; }

        public string Comment { get; set; }

        public int[] ReasonIds { get; set; }


        protected override ValidationResult IsValid(

        object value, ValidationContext validationContext)

        {

            if(Score < 4 && (string.IsNullOrEmpty(Comment) || ReasonIds.Count() < 1))

            {

                return new ValidationResult(GeScoreErrorMessage());

            }

            return ValidationResult.Success;

        }


        private string GeScoreErrorMessage()

        {

            return $"If Score < 4 Comment and Reasons must be provided";

        }

    }


查看完整回答
反對(duì) 回復(fù) 2023-09-09
  • 1 回答
  • 0 關(guān)注
  • 108 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)