I am using Fluent Validation in my project.
In my ViewModel I have a property that is of type string, valid values are only string representing positive integers.
So, I created a simple IntegerValidator that checks whether or not the string can be parsed into an integer. This works.
Problem is, how to add the rule that it must be a positive integer? I would like to use the existing Greater Than Validator, but chaining it to the rule for my string property would compare it as a string, not as a parsed int. How to achieve this?
Sample of what I would like to do (note the ToInt()):
RuleFor(x => x.BatchNumber).SetValidator(new IntegerValidator())
.ToInt().GreaterThan(0);
RuleBuilder<X, string>into aRuleBuilder<X, int>and make sure that the validated value is converted tointat validation time. But... the method chain should return aRuleBuilder<X, string>. Right? So, there must be a way to instruct consecutiveintrules (likeGreaterThan) to do anintvalidation, but return astringrulebuilder. I fear this is beyond the current capabilities of FluentValidation. – GertArnold Nov 15 '11 at 13:55ToIntdoesn't make too much sense, I think. I actually don't care how it is going to work, just that I can useGreaterThanand that an int is passed toGreaterThan. – Daniel Hilgarth Nov 15 '11 at 14:02