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.
我使用EntityFramework创建数据表引用我的模型,但它一次只能创建一个数据表。在我的项目中,当我的模型发生变化时,如何让数据表也发生变化?
EntityFramework
我需要修改我的数据库吗?有没有自动创建或修改的方法?
该方法称为 EF 迁移 - 查看这些教程(自动迁移、代码迁移)。如果您不使用迁移,您的数据库将不会更新 - EF 提供的没有迁移的唯一选择是删除数据库并让它从头开始创建一个新数据库。