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