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