using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Gitoga_dbcontext { /// public class GITSR_RAPPORTINI_Dbcontext : DbContext { /// Rapportini public DbSet? rapp { get; set; } /// ConfigurazioniDbContext public GITSR_RAPPORTINI_Dbcontext(DbContextOptions options) : base(options) { } /// OnModelCreating protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToView("API_RAPPORTINI"); } } }