在 POCO 实体上保存 DateTime.MinValue 时出现 SqlDateTime 溢出错误

发布于 2024-10-30 13:50:38 字数 551 浏览 0 评论 0原文

我在保存具有 DateTime 属性的 POCO 实体时遇到了一些问题。当 DateTime 属性的值为 DateTime.MinValue 时,由于 SqlDateTime.MinValue 和 DateTime.MinValue 之间的差异,SaveChanges() 会失败。

那么,该怎么办呢?

1)我应该在保存实体之前检查 DateTime.MinValue 吗?

2)我应该将我的日期时间 POCO 属性设计成这样吗?

    private SqlDateTime _created;
    public virtual DateTime Created
    {
        get
        {
            return _created.Value;
        }
        set 
        {
            _created = value == DateTime.MinValue ? SqlDateTime.MinValue : value;
        }
    }

/密码

I've been having som issues when saving POCO entities with a DateTime property. When the DateTime property has the value of DateTime.MinValue the SaveChanges() fails because of the difference between SqlDateTime.MinValue and DateTime.MinValue.

So, what to do?

1) Should I check for DateTime.MinValue before saving the entity?

2) Should I have my datetime POCO property designed something like this?

    private SqlDateTime _created;
    public virtual DateTime Created
    {
        get
        {
            return _created.Value;
        }
        set 
        {
            _created = value == DateTime.MinValue ? SqlDateTime.MinValue : value;
        }
    }

/PW

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香橙ぽ 2024-11-06 13:50:38

如果可能,我建议将数据库字段设为可为空,并将值设置为 null 而不是最小值。

或者我会这样设计该属性:

private SqlDateTime? _created;
public virtual DateTime Created
{
    get
    {
        return (DateTime)(_created ?? SqlDateTime.MinValue);
    }
    set
    {
        if (value == null || value < (DateTime)SqlDateTime.MinValue)
        {
            _created = SqlDateTime.MinValue;
        }
        else 
        {
            _created = (SqlDateTime)value;
        }
    }
}

If possible, I'd recommend making the database field nullable and set the value to null rather than min value.

Alternatively I would design the property like this:

private SqlDateTime? _created;
public virtual DateTime Created
{
    get
    {
        return (DateTime)(_created ?? SqlDateTime.MinValue);
    }
    set
    {
        if (value == null || value < (DateTime)SqlDateTime.MinValue)
        {
            _created = SqlDateTime.MinValue;
        }
        else 
        {
            _created = (SqlDateTime)value;
        }
    }
}
弄潮 2024-11-06 13:50:38

我能想到的最简单的方法是将 DateTime 属性初始化为 (DateTime)SqlDateTime.MinValue

public class SomeEntity
{
    public SomeEntity()
    {
        Updated = (DateTime)SqlDateTime.MinValue;
    }

    public DateTime Updated { get; set; }
}

The simplest approach I can think of is to initialize DateTime properties to (DateTime)SqlDateTime.MinValue:

public class SomeEntity
{
    public SomeEntity()
    {
        Updated = (DateTime)SqlDateTime.MinValue;
    }

    public DateTime Updated { get; set; }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文