我有一点问题,这是我的代码:
public partial class Tourist
{
public Tourist()
{
Reserve = new HashSet<Reserve>();
}
public int touristID { get; set; }
[Required]
[StringLength(50)]
public string touristNAME { get; set; }
public DateTime touristBIRTHDAY { get; set; }
[Required]
[StringLength(50)]
public string touristEMAIL { get; set; }
public int touristPHONE { get; set; }
public virtual ICollection<Reserve> Reserve { get; set; }
}
}
如何限制touristBIRTHDAY为+18岁?我想我必须使用这个功能,但我不知道在哪里放它: 注意:这个函数就是一个例子。
DateTime bday = DateTime.Parse(dob_main.Text);
DateTime today = DateTime.Today;
int age = today.Year - bday.Year;
if(age < 18)
{
MessageBox.Show("Invalid Birth Day");
}
谢谢;)
更新: 我遵循Berkay Yaylaci的解决方案,但我得到一个NullReferenceException。似乎我的值参数是默认值,然后我的方法没有发布,为什么?解决方案是什么?
答案 0 :(得分:5)
您可以编写自己的验证。首先,创建一个类。
我致电 MinAge.cs
public class MinAge : ValidationAttribute
{
private int _Limit;
public MinAge(int Limit) { // The constructor which we use in modal.
this._Limit = Limit;
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
DateTime bday = DateTime.Parse(value.ToString());
DateTime today = DateTime.Today;
int age = today.Year - bday.Year;
if (bday > today.AddYears(-age))
{
age--;
}
if (age < _Limit)
{
var result = new ValidationResult("Sorry you are not old enough");
return result;
}
return null;
}
}
<强> SampleModal.cs 强>
[MinAge(18)] // 18 is the parameter of constructor.
public DateTime UserBirthDate { get; set; }
IsValid在发布后运行并检查限制。如果年龄不大于极限(我们在模态中给出的!)而不是返回 ValidationResult
希望有所帮助,
答案 1 :(得分:1)
在旅游班上实施IValidatableObject。
将您的逻辑放在Validate()方法中。
您正在使用MVC,因此没有MessageBox.Show()。 MVC模型绑定器将自动调用验证例程。
这是另一个详细信息How do I use IValidatableObject?
的问题你的年龄逻辑也是错误的。它需要
DateTime now = DateTime.Today;
int age = now.Year - bday.Year;
if (now < bday.AddYears(age)) age--;