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