更新到 EF 4.2。然后呢?
好的,我从 NuGet 安装了 EF 4.2。刚刚做了安装包EntityFramework。这就是我所做的一切。
现在怎么办?
我怎么知道我正在使用新框架而不是旧框架。
我之前有一个使用 EF 4.0 的现有项目。我还使用预编译视图和自定义文本模板。更新后一切看起来都一模一样。
Ok, so I installed EF 4.2 from NuGet. Just did Install-Package EntityFramework. That's all I've done.
Now what?
How do I know I'm using the new Framework and not the old one.
I have an existing project previously with EF 4.0. I'm also using precompiled views and custom text templates. Everything looks exactly the same after I did the update.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现有项目不会发生任何变化。 EFv4.2 包含代码优先映射方法和 DbContext API - 这些都不影响现有的 EFv4.0 投影。它还包含一些次要帮助程序,例如强类型
Include
,但您必须在代码中使用它们。这不会神奇地改变现有代码。There will be no change in existing project. EFv4.2 contains code first mapping approach and DbContext API - neither of those affects existing EFv4.0 projection. It also contains few minor helpers like strongly typed
Include
but you must use them in your code. That is not something that will magically change existing code.