关于模型优先 EF4 开发
我刚刚尝试了一下,我还发现如果我更改 EF 模型并想从 model 重新生成数据库,数据库中的所有现有数据都将丢失。
有什么办法可以解决这个问题,因为这种情况在开发过程中总是会发生。
I just tried that out, and I also found that If I changed EF model and want to regenerate the database from model , all existing data in database will lost.
Is there any way to fix that, as this always happens during the development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看实体设计器数据库生成 powerpack
它是来自 Microsoft 的 Visual Studio 附加组件,可让您修改数据库架构而无需擦除数据。
Check out Entity Designer Database generation powerpack
it's a visual studio add on from microsoft, which let's you modify your db schema without wiping your data.
James Gaunt 基本上做到了——在新数据库中生成模式并使用模式更新工具。您不一定需要购买任何东西,Visual Studio 中的“数据”菜单下有架构和数据比较和迁移工具。
James Gaunt basically nailed it - generate the schema in a new database and use schema update tools. You don't necessarily need to buy anything there are schema and data compare and migrate tools in Visual Studio under the "Data" Menu.
尝试使用 Devart Entity Developer。我们为 Entity Framework 和 LINQ to SQL 模型提供数据库同步功能,请参阅本文 了解详情。
Try Devart Entity Developer. We offer the database synchronization functionality for Entity Framework and LINQ to SQL models, see this article for details.