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