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