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