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