我使用EF Code-First Migrations:
https://msdn.microsoft.com/en-us/data/jj591621.aspx
add-migration
,update-database
等都是从VS。中的程序包管理器控制台调用的。
我也使用SlowCheetah来管理我们拥有的各种环境,特别是包括管理每个开发人员拥有自己的数据库副本这一事实,以便他们可以更新模型更改而不会将其他人锁定在数据库之外。因此,其中一个更改的配置值是目标数据库名称。
(由于我不会进入的原因,我们不会使用connectionStrings
.config
设置,而是在appSettings
块中使用数据库名称)
包含模型和迁移的项目是TheCustomer.Database
项目。
如果我手动更改appSetting
中的TheCustomer.Database/app.config
值并运行迁移,则会正确使用配置值 - 因此配置从根本上起作用。
但是,如果我设置SlowCheetah转换来修改给定构建配置的值,请选择该配置,重建代码然后运行迁移,然后它不应用转换;它使用基础app.config
中的值,而不是app.SelectBuildConfig.config
SlowCheetah工作正常 - 当我运行sln获取网站时,它使用VS Build Config确定的正确Db。
有什么想法吗?
编辑:
ConfigFile实现:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
<appSettings>
<add key="DbName" value="This Default Value shouldn't work - you should be using a value for a specific build" />
<add key="DbPassword" value="SomePassword" />
</appSettings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /></startup></configuration>
转变
<?xml version="1.0" encoding="utf-8" ?>
<!-- For more information on using transformations
see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="DbName" value="LocalDev_MDM" xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
</appSettings>
</configuration>
答案 0 :(得分:1)
@Serg-Rogovtsev 是对的,EF 不知道 SlowCheetah。通过源代码搜索 ef core 后,似乎无法让 EF 考虑转换后的 .config,尤其是当您的 DbContext
在与启动项目分开的项目中声明时,尤其是在使用时更是如此依赖注入。
然后还有两种方法:
update-database -ConnectionString "Server=(localdb)\MSSQLLocalDB;Database=MyDb;Integrated Security=True;" -ConnectionProviderName System.Data.SqlClient
我有一个有点复杂的方法,其中包含多个未链接的项目、依赖项注入和 EF,在我引入 SC 转换之前,该方法一直没有问题。