I would like to specify that a decimal field for a price must be >= 0 but I don\'t really want to impose a max value.
Here\'s what I have so far...I\'m not sure what the
You can use:
[Min(0)]
This will impose a required minimum value of 0 (zero), and no maximum value.
You need DataAnnotationsExtensions to use this.