sharding/benchmarks/ShardingCoreBenchmark5x/NoShardingDbContexts/DefaultDbContext.cs

17 lines
425 B
C#

using Microsoft.EntityFrameworkCore;
namespace ShardingCoreBenchmark5x.NoShardingDbContexts
{
internal class DefaultDbContext:DbContext
{
public DefaultDbContext(DbContextOptions<DefaultDbContext> options):base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.ApplyConfiguration(new OrderMap());
}
}
}