using Microsoft.EntityFrameworkCore; namespace yawaflua.ru.Utilities { public static class AppDbContextUtilities { public static bool TryGetValue(this DbSet set, Func predicate, out T? value) where T : class { value = set.FirstOrDefault(predicate); return value != null; } } }