How do I make entity-framework migrations use web.config transforms?

我们两清 提交于 2019-11-28 08:31:13

问题


When you apply any commands like

  • 'update-database'
  • 'add-migration'

The EF uses the connection string in your main web.config

even if you have configured web.debug.config and web.release.config with xml transformation

This means, I have to go in and risk forgetting to change my true web.config back prior to a release.


回答1:


I think the only way to run web.config transformations locally is to use MSBuild with the following parameters, where [YourTransformationConfiguration] is the name of the configuration to use, e.g. Debug or Release:

msbuild PathToProject /T:Package /P:Configuration=[YourTransformationConfiguration] /P:AutoParameterizationWebConfigConnectionStrings=False

The output of which will be available at:

[ProjectFolder]\obj\[YourTransformationConfiguration]\Package\PackageTmp

From here you can run migrate.exe on your assembly, which is similar to running the Update-Database PowerShell script. If you used Nuget, this will be in the tools folder of the EntityFramework package. I had some trouble getting this up and running, but there's a useful answer Stack Overflow answer here:

Getting Migrate.exe to work



来源:https://stackoverflow.com/questions/22173046/how-do-i-make-entity-framework-migrations-use-web-config-transforms

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!