作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个跟随的模型类
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/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!