using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Ferrari_dbcontext { /// FERRA_CHIAMATEDbContext public class FERRA_PRESEDbContext : DbContext { /// FERRA_CHIAMATEDbContext public DbSet? Prese { get; set; } /// public FERRA_PRESEDbContext(DbContextOptions options) : base(options) { } /// A protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("PRESA"); modelBuilder.Entity().HasKey(table => new { table.picodazi, table.pimpianto, table.picodint, table.pidatman }); } } }