码迷,mamicode.com
首页 > 数据库 > 详细

[EntityFramework] 对 DateTime 类型使用 SQL 服务器时间或者字段默认值

时间:2014-09-11 16:54:12      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:io   使用   strong   for   文件   on   c   时间   sql   

DateTime 类型在 SQL 服务器上如果设置了默认值,在 EntityFramework 添加新行的时候想使用该默认值,则不能对新增加的实体的 DateTime 字段赋值。

但是如果新增加的实体 DateTime 不设置,会出现错误如下:

System.Data.Entity.Infrastructure.DbUpdateException - An error occurred while updating the entries. See the inner exception for details.
System.Data.Entity.Core.UpdateException - An error occurred while updating the entries. See the inner exception for details.
System.Data.SqlClient.SqlException - The conversion of a datetime2 data type to a datetime data type resulted in an out-of-range value.
The statement has been terminated.

解决方案:

定位到edmx文件,选中该 DateTime 类型的字段,在属性窗口中,将 StoreGeneratePattern 从 None 改为 Computed 即可。

[EntityFramework] 对 DateTime 类型使用 SQL 服务器时间或者字段默认值

标签:io   使用   strong   for   文件   on   c   时间   sql   

原文地址:http://www.cnblogs.com/lionetchen/p/3966520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!