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