mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
12 lines
407 B
C#
12 lines
407 B
C#
#nullable disable
|
|
using LinqToDB.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Nadeko.Bot.Db.Models;
|
|
|
|
namespace NadekoBot.Modules.Searches;
|
|
|
|
public static class AtlExtensions
|
|
{
|
|
public static Task<AutoTranslateChannel> GetByChannelId(this IQueryable<AutoTranslateChannel> set, ulong channelId)
|
|
=> set.Include(x => x.Users).FirstOrDefaultAsyncEF(x => x.ChannelId == channelId);
|
|
} |