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