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