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