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.
我一直在试图弄清楚如何设置数据库以运行迁移。
我创建了一个新的空项目并首先使用代码设置实体框架。我已经建立了所有课程。
我想添加一个新数据库并在此运行迁移。我有迁移工作,但我不知道他们在哪个数据库上运行。
是否可以设置要用于迁移的数据库?
同一上下文的多个数据库有点棘手。但有可能:问题的本质是 EF 如何决定使用哪个连接。它将在迁移期间访问实例化上下文而不使用 NO PARAMS。因此,取决于它的行为方式会影响您的结果和成功。
从这里开始: EntityFramework 代码优先自定义连接字符串和迁移