using Microsoft.EntityFrameworkCore; namespace ApiSoftway.Models.Gesa_DbContext { public class GESA_SEDECONSEGNA_DbContext : DbContext { public DbSet? SedeConsegna { get; set; } public GESA_SEDECONSEGNA_DbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("GESAPIANICON"); modelBuilder.Entity().HasKey(table => new { table.Pctipcon, table.Pccodcon, table.Cprownum }); } } }