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