using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Sicilia_dbcontext { /// public class SICILIA_COMPO_IMPIA_TABLEDbContext:DbContext { /// public DbSet? Componen { get; set; } /// public SICILIA_COMPO_IMPIA_TABLEDbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("LABSEMICOMIMP"); modelBuilder.Entity().HasKey(table => new { table.cocodimp, table.cprownum, table.cocodazi }); } } }