#nullable disable using LinqToDB; using System.Linq.Expressions; namespace NadekoBot.Common; public static class Linq2DbExpressions { [ExpressionMethod(nameof(GuildOnShardExpression))] public static bool GuildOnShard(ulong guildId, int totalShards, int shardId) => throw new NotSupportedException(); private static Expression> GuildOnShardExpression() => (guildId, totalShards, shardId) => guildId / 4194304 % (ulong)totalShards == (ulong)shardId; }