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