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