2024-12-17 09:35:28 +05:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Persistence.Benchmark.Database.Entities;
|
2024-12-17 13:40:17 +05:00
|
|
|
|
using DD.Persistence.Database;
|
2024-12-17 09:35:28 +05:00
|
|
|
|
|
|
|
|
|
namespace Persistence.Benchmark.Database;
|
|
|
|
|
public class BenchmarkDbContext : PersistenceDbContext
|
|
|
|
|
{
|
|
|
|
|
public new DbSet<ParameterData> ParameterData => Set<ParameterData>();
|
|
|
|
|
public BenchmarkDbContext(DbContextOptions options) : base(options)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|