I am using FluentValidation with a login form. The email address field is
Required and Must be a valid email address.
I want to display a
You can just chain them together, it's called Fluent Validation for a reason.
RuleFor(s => s.Email).NotEmpty().WithMessage("Email address is required") .EmailAddress().WithMessage("A valid email is required");