Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与此msdn 示例相关,我构建了一个从模型生成数据库的应用程序。现在我想到了一个事实,即我有一个已填充的数据库并且不想因为丢失数据而删除所有表。是否有可能生成查询的“更改表”版本而不是“删除表”版本?
问候克里斯
如果您对模型进行了更改并希望这些更改反映在您的数据库中而不会丢失数据,您应该考虑使用Entity Framework Code First Migrations。
链接中的教程提供了一个很好的演练。
在实体框架中使用模型优先方法进行迁移