When I try to bind a string ("1,000.00") to a decimal property (x) FluentValidation throws the following error: "The value '1,000.00' is not valid for x." I have a DecimalModelBinder
that will handle binding the model but FluentValidation prevents me from getting that far. I could strip the comma before the form is submitted but I would rather not handle this for many different fields. I am looking for a way to tell FluentValidation to completely ignore the property and just trust me :).
Thanks in advance for any thoughts or suggestions!