using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Gitoga_dbcontext { /// public class GITSR_COMMESSE_TABLE_DbContext : DbContext { /// public DbSet? Commdesc { get; set; } /// public GITSR_COMMESSE_TABLE_DbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("GITSRLAV_MAST"); modelBuilder.Entity().HasKey(table => new { table.laserial }); } } }