using Benchmarks.Model; using GenHTTP.Modules.Webservices; using Microsoft.EntityFrameworkCore; namespace Benchmarks.Tests; public sealed class DbResource { private static readonly Random Random = new(); [ResourceMethod] public async ValueTask GetRandomWorld() { var id = Random.Next(1, 10001); await using var context = DatabaseContext.CreateNoTracking(); return await context.World.FirstOrDefaultAsync(w => w.Id == id).ConfigureAwait(false); } }