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