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