using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Security_dbcontext
{
///
public class SECURITY_MAG_NEW_DbContext:DbContext
{
///
public DbSet? Mag { get; set; }
///
public SECURITY_MAG_NEW_DbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("A0001MAG_NEW");
modelBuilder.Entity().HasKey(table => new
{
table.seriale_rapportino,
table.riga
});
}
}
}