using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; namespace TDD.DbTestHelpers.EF { public static class Extensions { public static void ClearTable(this DbSet table) where TEntity : class { foreach (var entity in table) { table.Remove(entity); } } } }