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


    I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error.

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

    I specifically did not use any 2008 features when I built the database. I can't find any reference to datetime2 in the code. And, yes the column is defined as "datetime" in the database.

    Answer:

    A quick google points me to what looks like the solution.

    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.

    <Schema Namespace="Foobar.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2005" >
    From Link: http://stackoverflow.com/questions/316422/using-sql-server-2008-and-sql-server-2005-and-date-time
  • 相关阅读:
    idea--不能启动问题
    linux--mysql5.7安装
    vmware
    debezium
    java枚举
    springfox
    日志级别
    lombok--知识点
    es6--箭头函数
    网址访问过慢
  • 原文地址:https://www.cnblogs.com/RobotTech/p/2209678.html
Copyright © 2020-2023  润新知