mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
12 lines
295 B
C#
12 lines
295 B
C#
#nullable disable
|
|
using Microsoft.EntityFrameworkCore;
|
|
using NadekoBot.Services.Database.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);
|
|
} |