How can I write a rule in fluent validation to check two nullable dates in that the start date needs to be earlier than the end date.
I am thinking along the line of
RuleFor(c => c.StartDate)
.NotEmpty()
if the start date is not empty and end date not empty then compare
Something like this-
Note-
The datatypes must be same for comparison.
Or more convinient from this source-