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