Nuget 提供的最新 EntityFramework 版本中的 CodeFirst 位发生了什么?
沮丧:对我的软件包进行了更新,其中包括 EFCodeFirst。包管理器告知该包现已过时,并且安装了最新版本的 EntityFramework (4.1.10311.0)。现在我找不到上下文的引用(DbContext、DbSet 都已损坏)。那些到底去哪儿了?他们改名了吗? CodeFirst 的东西怎么了?
Frustrated: Ran an update on my packages, which included EFCodeFirst. Was told that package is now obsolete by the package manager, and it installed the latest version of EntityFramework (4.1.10311.0). Now I can't find references for my contexts (DbContext, DbSet are both broken). Where the heck did those go? Did they get renamed? What happened to the CodeFirst stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有代码的第一位均位于 EF 4.1 中。
请确保您已在使用 EF 代码优先的任何项目中添加了对新 EntityFramework.dll 的引用。您可以在此处了解 EF 4.1 和 CPT5 中的一些更改:http://blogs.msdn.com/b/adonet/archive/2011/03/15/ef-4-1-release-candidate-available.aspx
这是使用 CPT5 升级现有应用程序的演练:http://johnpapa.net/silverlight /升级到entity-framework-4-1-rc/
All the code first bits are in EF 4.1
Make sure you have added a reference to the new EntityFramework.dll in any project using EF code first. There are some changes in EF 4.1 and CPT5 that you can read about here: http://blogs.msdn.com/b/adonet/archive/2011/03/15/ef-4-1-release-candidate-available.aspx
Here is a walk through of upgrading an existing app using CPT5: http://johnpapa.net/silverlight/upgrading-to-entity-framework-4-1-rc/