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