我有
[Range(typeof(decimal), "75000", "300000")]
public decimal Importo { get; set; }
或者
[Range(75000, 300000)]
public decimal Importo { get; set; }
对于 db 上的字段:decimal(10, 2)
当我的页面加载时,如果我提交表单,我会在输入中得到 75000,00,我会收到错误消息
The field Importo must be between 75000 and 300000
(我使用 globalize.js 将其本地化为意大利语)
但 75000,00 必须是有效值。
我阅读使用正则表达式。有希望只使用范围属性吗?