在 POCO 实体上保存 DateTime.MinValue 时出现 SqlDateTime 溢出错误
我在保存具有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果可能,我建议将数据库字段设为可为空,并将值设置为 null 而不是最小值。
或者我会这样设计该属性:
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:
我能想到的最简单的方法是将
DateTime
属性初始化为(DateTime)SqlDateTime.MinValue
:The simplest approach I can think of is to initialize
DateTime
properties to(DateTime)SqlDateTime.MinValue
: