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

使用的SQLServer版本不支持数据类型“datetime2“

时间:2016-01-21 00:14:48      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

快速解决方法:

原因,在使用ado.net entity的时候,entity使用的数据库是sqlserver 2008,

但后来实际使用中使用的数据库是sqlserver 2005

操作DateTime类型的数据是会提示:”使用的 SQL Server 版本不支持数据类型“datetime2”

The version of SQL Server in use does not support datatype ‘datetime2
解决办法
Open your EDMX in a file editor (or “open with…” in Visual Studio and select XML Editor). At the top you will find the storage model and it has an attribute ProviderManifestToken. This has should have the value 2008. Change that to 2005, recompile and everything works.

就是打开你的edmx文件,搜索ProviderManifestToken值,改为2005就ok了。

使用的SQLServer版本不支持数据类型“datetime2“

标签:

原文地址:http://www.cnblogs.com/Akgu/p/5146790.html

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