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