using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Marrocco_dbcontext { /// public class MARRO_RAPP_NEWDbContext : DbContext { /// public DbSet? Rapps { get; set; } /// public MARRO_RAPP_NEWDbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { //modelBuilder.Entity().ToView("API_RAPP_NEW"); modelBuilder.Entity().ToTable("RAPP_NEW"); } } }