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