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