[RegularExpression("", ErrorMessage = " Affordable fees cannot be Zero or Negative.")] public decimal AffordablePayment { get; set; }
Мне нужно регулярное выражение для ErrorMessage в проверке DataAnnotation. Пожалуйста, помогите мне. Спасибо!
[Range(0.01, double.MaxValue, ErrorMessage = "Affordable fees cannot be Zero or Negative.")] public decimal AffordablePayment { get; set; }
попробуйте это:
(^\d*\.?\d*[1-9]+\d*$)|(^[1-9]+\d*\.\d*$)