47820ba32a
- Файл со словами-исключениями в spellchecker
14 lines
329 B
C#
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();
|
|
}
|
|
}
|