在我的代码优先模型中,我有以下内容。
public class Agreement
{
[Key]
[ForeignKey("AppRegistration")]
public int AppRegistrationId { get; set; }
[Required]
[Display(Name = "I agree to Participation Agreement")]
[NotMapped]
public bool IsAgreementChecked { get; set; }
public DateTime DateAgreed { get; set; }
public AppRegistration AppRegistration { get; set; }
}
我已标记IsAgreementChecked
为,NotMapped
因为我只想DateTime
在用户单击“同意”复选框时存储。当我Controller
基于此模型生成并尝试使用创建页面时。所有字段均正确验证,但复选框被忽略。换句话说,复选框不会触发任何类型的验证。有任何想法吗?谢谢。