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