微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-mvc – EF 4.1 Code First:“非空值类型’DateTime’”问题

在初始开发和测试之后,我已经将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; }
}

解决方法

Is this telling me that all rows in
the date must have a date and not be
null? What do I do if I dont want to
set a date on specific row?

它看起来像您指向的数据库具有Date1的空值.如果您确实不想为所有行设置日期,只需使您的Date1属性为空:

public DateTime? Date1{get;set;}

或者,您可以为当前没有通过sql设置datetime的所有行放置认日期.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐