asp.net-mvc – EF 4.1 Code First:“非空值类型’DateTime’”问题
发布时间:2020-05-25 07:23:29 所属栏目:asp.Net 来源:互联网
导读:在初始开发和测试之后,我已经将MVC3应用程序指向包含实时数据的现有数据库. 但是我收到与“datetime”类型的Date1类型相关的错误. The Date1 property on StaffAttachment could not be set to a null value. You must set this property to a non-null value
|
在初始开发和测试之后,我已经将MVC3应用程序指向包含实时数据的现有数据库. 但是我收到与“datetime”类型的Date1类型相关的错误. The 'Date1' property on 'StaffAttachment' could not be set to a 'null' value. You must set this property to a non-null value of type 'DateTime'. 这是告诉我,日期中的所有行都必须有日期,而不是空吗?如果我不想在特定行上设置日期,该怎么办? 任何人都可以提供解决这个问题的建议? 谢谢保罗 编辑1(过帐模型) public class StaffAttachment
{
[Key]
public int AttachmentID { get; set; }
public int? StaffID { get; set; }
public int? TypeID { get; set; }
[Required]
[DisplayName("Proof of ID")]
public int? AttachmentTypeID { get; set; }
[Required]
[DisplayName("ID Reference")]
public string Reference1 { get; set; }
public string Reference2 { get; set; }
public string DateType { get; set; }
[DisplayName("Expiry Date")]
public DateTime Date1 { get; set; }
[Required]
public DateTime Date2 { get; set; }
public DateTime Date3 { get; set; }
public DateTime Date4 { get; set; }
public string AttachmentPath { get; set; }
public int? ValidatedUserID { get; set; }
public DateTime ValidatedDate { get; set; }
public int? CreatedUserID { get; set; }
public DateTime CreatedDate { get; set; }
public int? EditedUserID { get; set; }
public DateTime EditedDate { get; set; }
public TimeSpan TimeStamp { get; set; }
public string FileName { get; set; }
public byte[] FileImage { get; set; }
public int AttachmentSection { get; set; }
}
解决方法
它看起来像您指向的数据库具有Date1的空值.如果您确实不想为所有行设置日期,只需使您的Date1属性为空: public DateTime? Date1{get;set;}
或者,您可以为当前没有通过SQL设置datetime的所有行放置默认日期. (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- asp.net – 登录尝试后GoDaddy上的另一个安全例外
- asp.net-mvc – 服务层验证
- ASP.NET中的Akka.NET actor系统
- asp.net – 从启用AJAX的WCF服务返回错误详细信息
- Asp.net web API日期时间格式
- asp.net-mvc – @ Html.DropDownListFor如何添加选项?
- asp.net-mvc – HttpPost和HttpGet属性在MVC:为什么使用Ht
- asp.net-mvc – 为IIS托管的.SVC文件配置XML-RPC行为?
- asp.net – 自定义Web字体在IE9中不起作用
- 将ASP.NET添加到ASP.NET文本框控件的OnBlur属性
推荐文章
站长推荐
热点阅读
