Hi,
I have cases where I need to build the errormessage based on values inside the type being validated.
eg.
RuleFor(f=>f.FirstName) .NotEmpty() .WithLocalizedMessage((x) => PersonStrings.ValidatieFrequentieTpVerplicht, x.SomePropertyOfPerson );
Is this already possible and am I overlooking something or should I create my own extension?