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