using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Marrocco_dbcontext { /// public class MARRO_CHIAMATA_SERIALE_DbContext : DbContext { /// public DbSet? Seriali { get; set; } /// public MARRO_CHIAMATA_SERIALE_DbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("MARROPINUMCHI"); modelBuilder.Entity().HasKey(table => new { table.piditta }); } } }