Entity Framework Error - The version of SQL Server in use does not support datatype 'datetime2'

后端 未结 3 1685
不思量自难忘°
不思量自难忘° 2021-01-06 10:28

I am using Entity Framework 4.0 in an ASP.NET 4.0 Web Form.

All is fine on the development server. But when I get to the production server, I my Elmah logs this erro

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-06 11:02

    Just put DateTime.Now as the date if you have no other...

    Had the same error and this solved it because if you dont set a value for your date time object it will be 1/1/0001 12:00:00 AM...this give you the error then... again this is how i solved the problem

提交回复
热议问题