gpt4 book ai didi

c# - MVC4中两个变量的RequiredIf条件验证

转载 作者:太空狗 更新时间:2023-10-29 20:02:47 26 4
gpt4 key购买 nike

我有一个跟随的模型类

 public bool Saturday{ get; set; }

public bool Sunday{ get; set; }

public string Holiday{ get; set; }

我想在其中使用星期六和星期日字段为假日字段使用 RequiredIf 条件。我可以像下面这样使用吗

   [RequiredIf("Sunday,Saturday",false)]
public string Holiday{ get; set; }

所以我不知道如何在我的模型类中使用 RequiredIf 条件,所以请有人帮助我

最佳答案

也许在你的模型中试试这个:

[Required]
public bool Saturday{ get; set; }

[Required]
public bool Sunday{ get; set; }

[NotMapped]
public bool SatSun
{
get
{
return (!this.Saturday && !this.Sunday);
}
}

[RequiredIf("SatSun",true)]
public string Holiday{ get; set; }

关于c# - MVC4中两个变量的RequiredIf条件验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28336992/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com