Entity Framework Seed method is not being called

限于喜欢 提交于 2019-11-30 12:06:48

The Migrations Seed method

runs whenever the Update-Database PowerShell command is executed

You need to call Update-Database not Add-Migration

Add-Migration scaffolds a migration file containing commands to migrate the database to a new version. It is empty because there are no schema changes to make. You do not need to call Add-Migration before calling Update-Database if all you want to do is seed

References:

Code first Db initialization strategies.
Code first migrations recommended reading
Managed Migrations
Database initializer and Migrations Seed methods

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