Files
nadekobot/src/NadekoBot/Db/Extensions/DbExtensions.cs
2024-04-27 16:03:48 +00:00

12 lines
280 B
C#

#nullable disable
using Microsoft.EntityFrameworkCore;
using NadekoBot.Db.Models;
namespace NadekoBot.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);
}