12 lines
No EOL
287 B
C#
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);
|
|
} |