How to use migration programmatically in EntityFramework Codefirst?

后端 未结 1 1812
天命终不由人
天命终不由人 2020-12-10 12:00

I\'m working in a project that uses EF Code First. I\'m trying to use migration features. I don\'t want to use Package Console Manager. How can I execute the \"Add-Migration

相关标签:
1条回答
  • 2020-12-10 12:45

    You have a couple of choices. You can use the dbmigrator class from within your code: http://romiller.com/2012/02/09/running-scripting-migrations-from-code/

    Or you can use migrate.exe which is handy for running them in a build step, etc. https://msdn.microsoft.com/en-us/data/jj618307.aspx

    0 讨论(0)
提交回复
热议问题