I use FluentValidation 3 and I have a strange problem when I use overloaded WithMessage methods.
A composite format string are not formatting correct. I get "true" instead of {0} in my format string. All other format items are not replaced.
For example:
public class MyModelValidator : AbstractValidator<MyModel>
{
public MyModelValidator()
{
RuleFor(x => x.Caption).NotNull().WithMessage("{0} ----- {1}", "one", "two" );
}
}
Validation string which I get is: "true----- {1}" instead of "one----- two".
Could you explain me, what is wrong in my code?