有一個表格,用戶可以輸入事件的開始日期/時間和結束日期/時間。這裏的驗證至今:FluentValidation - 驗證多個屬性
public class EventModelValidator : AbstractValidator<EventViewModel>
{
public EventModelValidator()
{
RuleFor(x => x.StartDate)
.NotEmpty().WithMessage("Date is required!")
.Must(BeAValidDate).WithMessage("Invalid date");
RuleFor(x => x.StartTime)
.NotEmpty().WithMessage("Start time is required!")
.Must(BeAValidTime).WithMessage("Invalid Start time");
RuleFor(x => x.EndTime)
.NotEmpty().WithMessage("End time is required!")
.Must(BeAValidTime).WithMessage("Invalid End time");
RuleFor(x => x.Title).NotEmpty().WithMessage("A title is required!");
}
private bool BeAValidDate(string value)
{
DateTime date;
return DateTime.TryParse(value, out date);
}
private bool BeAValidTime(string value)
{
DateTimeOffset offset;
return DateTimeOffset.TryParse(value, out offset);
}
}
現在我還想添加驗證該EndDateTime>的startDateTime(合併日期+時間屬性),但不知道如何去做。
編輯: 爲了澄清,我需要以某種方式合併結束日期+結束時間/起始日期+開始時間即DateTime.Parse(src.StartDate + 「」 + src.StartTime),然後驗證EndDateTime對比的startDateTime - 怎麼辦我這樣做?
是否有可能做同樣的客戶端? – SMC
這在FluentValitation中不再有效。這是正確的答案:http://stackoverflow.com/a/20546097/59119 – Natrium