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