0

Say I have an Email property and i want to show 2 different specific error messages like "required" or "invalid format" accordingly to provide a better user experience... how do I do that?

icube
  • 2,578
  • 1
  • 30
  • 63
  • Maybe helpful or at least a start @ http://stackoverflow.com/questions/7115509/reactiveui-and-validation/7128527#7128527 – kenny Oct 31 '13 at 01:40

1 Answers1

0

If you need more control over validation, I'd suggest giving FluentValidation a try. It integrates nicely with any MVVM framework and by using InlineValidator you can tackle more complex validation scenarios compared to property based validation. I'm using it myself in most of my projects.

Oliver Weichhold
  • 10,259
  • 5
  • 45
  • 87