using Microsoft.EntityFrameworkCore; namespace ApiSoftway.Models.Gesa_DbContext { public class GESA_MODGIR_DbContext : DbContext { public DbSet? Mod { get; set; } /// public GESA_MODGIR_DbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("GESAPIMODGIR"); modelBuilder.Entity().HasKey(table => new { table.Piprogre }); } } }