#nullable disable using Microsoft.EntityFrameworkCore; using NadekoBot.Services.Database.Models; namespace NadekoBot.Db; public static class DbExtensions { public static T GetById(this DbSet set, int id) where T : DbEntity => set.FirstOrDefault(x => x.Id == id); }