当前位置:  开发笔记 > 编程语言 > 正文

使用SQL Server 2008和SQL Server 2005以及日期时间

如何解决《使用SQLServer2008和SQLServer2005以及日期时间》经验,为你挑选了3个好方法。

我已经针对2008数据库构建了一个实体框架模型.一切都适用于2008数据库.当我尝试更新2005数据库上的实体时,我收到此错误.

The version of SQL Server in use does not support datatype 'datetime2

我在构建数据库时没有使用任何2008功能.我在代码中找不到对datetime2的任何引用.并且,是的,该列在数据库中被定义为"datetime".



1> Richard Harr..:

快速谷歌指出我看起来像解决方案.

在文件编辑器中打开EDMX(或在Visual Studio中"以...打开"并选择XML编辑器).在顶部,您将找到存储模型,它具有属性ProviderManifestToken.这应该具有值2008.将其更改为2005,重新编译,一切正常.

注意:每次从数据库更新模型时都必须执行此操作.


我错误地投了这个,解开了,但现在不能做我真正想要做的事情就是投票吧!感谢您找到问题.如果我理解正确,由于从数据库更新模型,数据库是SQL 2008数据库,从2005年到2008年的值是否会发生变化?在我的环境中,我的开发人员机器有SQL 2008,但测试环境有2005(生产也有).在我们迁移到2008年之前,我是否正确地认为这将继续发生?

2> Jason..:

快速查看线:




3> 小智..:

这是非常令人沮丧的,我很惊讶MS决定不这样做,所以你可以针对给定的SQL版本.为了确保我们的目标是2005年,我编写了一个简单的控制台应用程序并在PreBuild步骤中调用它.

预建步骤如下所示:

$(SolutionDir)Artifacts\SetEdmxVer\SetEdmxSqlVersion $(ProjectDir)MyModel.edmx 2005

代码在这里:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;

namespace SetEdmxSqlVersion
{
    class Program
    {
        static void Main(string[] args)
        {
            if (2 != args.Length)
            {
                Console.WriteLine("usage: SetEdmxSqlVersion  ");
                return;
            }
            string edmxFilename = args[0];
            string ver = args[1];
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(edmxFilename);

            XmlNamespaceManager mgr = new XmlNamespaceManager(xmlDoc.NameTable);
            mgr.AddNamespace("edmx", "http://schemas.microsoft.com/ado/2008/10/edmx");
            mgr.AddNamespace("ssdl", "http://schemas.microsoft.com/ado/2009/02/edm/ssdl");
            XmlNode node = xmlDoc.DocumentElement.SelectSingleNode("/edmx:Edmx/edmx:Runtime/edmx:StorageModels/ssdl:Schema", mgr);
            if (node == null)
            {
                Console.WriteLine("Could not find Schema node");
            }
            else
            {
                Console.WriteLine("Setting EDMX version to {0} in file {1}", ver, edmxFilename);
                node.Attributes["ProviderManifestToken"].Value = ver;
                xmlDoc.Save(edmxFilename);
            }
        }
    }
}

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有