Validate decimal value to 2 decimal places with data annotations?

前端 未结 8 1399
青春惊慌失措
青春惊慌失措 2020-12-03 07:20

I have this in my view model:

[Required(ErrorMessage = \"Price is required\")]
[Range(0.01, 999999999, ErrorMessage = \"Price must be greater than 0.00\")]
[         


        
8条回答
  •  南方客
    南方客 (楼主)
    2020-12-03 07:56

    You can make this validation by using a regular expression and apply it with RegularExpression attribute.

提交回复
热议问题