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