elliebot/src/EllieBot/Db/Extensions/DbExtensions.cs
2024-09-20 21:07:27 +12:00

12 lines
No EOL
278 B
C#

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