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