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