using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Lift_web_dbcontext { /// public class LIFT_WEB_MAG_NEWDbContext : DbContext { /// public DbSet? Mag { get; set; } /// public LIFT_WEB_MAG_NEWDbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("DEMOMAG_NEW"); modelBuilder.Entity().HasKey(table => new { table.seriale_rapportino, table.riga }); } } }