elliebot/src/Ellie.Bot.Db/Extensions/DbExtensions.cs
2023-07-12 00:58:49 +12:00

12 lines
No EOL
287 B
C#

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