using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.VT_dbcontext { /// public class VT_PROGRESSIVI_DbContext: DbContext { /// public DbSet? progr { get; set; } /// public VT_PROGRESSIVI_DbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("PROGRESSIVI"); modelBuilder.Entity().HasKey(table => new { table.azienda, table.tipo_prog }); } } }