开发者

EntityFramework SQL Server 2000? [duplicate]

开发者 https://www.devze.com 2023-04-09 10:14 出处:网络
This question already has answers here: Closed 11 years ago. Possible Duplicate: Entity Framework v2 doesn't support sql 2000?
This question already has answers here: Closed 11 years ago.

Possible Duplicate:

Entity Framework v2 doesn't support sql 2000?

I have a windows forms application that access a SQL Server 2000 server. Originally this application was written with Visual Studio 2008. Since then we have migrated to Visual Studio 2010 and when I try to add new entitie开发者_如何学Pythons to the .edmx (using Update Model from Database) I get a message saying that EntityFramwork only works with SQL Server 2005 or greater.

Did something change in VS2010? I was definitely able to add entities before.


EF4's support for SQL Server 2000 is spotty; things like First and FirstOrDefault (or any functions that result in a TOP expression) will not work, for example. While the runtime may generate code that is compatible, the designer is no longer compatible with anything older than SQL Server 2005.

Unfortunately, that's what you're stuck with. Your best option (in the short term) would probably be to mirror a copy of your database in a SQL Server 2005 Express instance and point the designer to that.

While I realize that companies can have a significant investment in software and upgrading is not always feasible, SQL Server 2000 is 11 -- almost 12 -- years old, and it's not really reasonable to expect cutting-edge tools to support technology this old when multiple versions have been released since then.

Good luck!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号