如何删除Seed方法中的所有数据?

时间:2014-09-06 17:07:04

标签: entity-framework ef-migrations

我首先使用Entity Framework代码进行迁移,我想从所有表中删除Seed方法中的所有数据,但__MigrationHistory表除外。在我的数据库干净之后,我将继续使用种子方法,但只是添加新对象。

我想要这个,因为我使用开发数据库进行开发,并且我一直想将其重置为默认状态。

那么,在种子方法中除了__MigrationHistory之外的所有表中删除所有数据的最佳方法是什么?

1 个答案:

答案 0 :(得分:10)

public override void Seed(YourNamespace.Model.DbContext context)
{
            // Deletes all data, from all tables, except for __MigrationHistory
            context.Database.ExecuteSqlCommand("sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'");
            context.Database.ExecuteSqlCommand("sp_MSForEachTable 'IF OBJECT_ID(''?'') NOT IN (ISNULL(OBJECT_ID(''[dbo].[__MigrationHistory]''),0)) DELETE FROM ?'");
            context.Database.ExecuteSqlCommand("EXEC sp_MSForEachTable 'ALTER TABLE ? CHECK CONSTRAINT ALL'");

            // proceed with the seed here
}