我的一个属性有以下数据注释:
[RegularExpression(@"A|B|C|A and B", ErrorMessage = "You must select one.")]
当我提交值“A和B”时,它不接受这个,但如果我发布“A”,“B”或“C”,它就会通过。我将如何使它完整的字符串“A和B”将接受。
答案 0 :(得分:1)
将“A和B”括在括号中:
[RegularExpression(@"A|B|C|(A and B)", ErrorMessage = "You must select one.")]