using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace NDB.Infrastructure.DatabaseMigration.Entities.Configurations { internal class MigratedScriptConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.ToTable("MigratedScript", "migration").HasKey(z => z.Id); builder.Property(z => z.Id).ValueGeneratedOnAdd(); } } }