using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Sinergo_dbcontext { /// public class SINERGO_TIMBRATUREDbContext : DbContext { /// public DbSet? Timbr { get; set; } /// public SINERGO_TIMBRATUREDbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("TIMBRATURE"); } } }