13 lines
376 B
C#
13 lines
376 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Persistence.Benchmark.Database.Entities;
|
|
using Persistence.Database;
|
|
|
|
namespace Persistence.Benchmark.Database;
|
|
public class BenchmarkDbContext : PersistenceDbContext
|
|
{
|
|
public new DbSet<ParameterData> ParameterData => Set<ParameterData>();
|
|
public BenchmarkDbContext(DbContextOptions options) : base(options)
|
|
{
|
|
}
|
|
}
|