persistence/Persistence.IntegrationTests/EFCoreExtensions.cs
Оля Бизюкова 47820ba32a - Editorconfig
- Файл со словами-исключениями в spellchecker
2024-12-09 13:19:55 +05:00

14 lines
329 B
C#

using Microsoft.EntityFrameworkCore;
namespace Persistence.IntegrationTests;
public static class EFCoreExtensions
{
public static void CleanupDbSet<T>(this DbContext dbContext)
where T : class
{
var dbset = dbContext.Set<T>();
dbset.RemoveRange(dbset);
dbContext.SaveChanges();
}
}