using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Gitoga_dbcontext { /// public class GITSR_IMPIANTI_Dbcontext : DbContext { /// public DbSet? Impia { get; set; } /// public GITSR_IMPIANTI_Dbcontext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToView("API_IMPIANTI"); } } }