using Microsoft.EntityFrameworkCore; using Persistence.Benchmark.Database.Entities; using Persistence.Database; namespace Persistence.Benchmark.Database; public class BenchmarkDbContext : PersistenceDbContext { public new DbSet ParameterData => Set(); public BenchmarkDbContext(DbContextOptions options) : base(options) { } }