SAB-E02/TDD.DbTestHelpers/EF/EfExtensions.cs
2021-04-06 18:04:43 +02:00

20 lines
424 B
C#

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