using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Gitoga_dbcontext
{
///
public class GITSR_CHIAMATA_SERIALE_DbContext: DbContext
{
///
public DbSet? Seriali { get; set; }
///
public GITSR_CHIAMATA_SERIALE_DbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("GITSRPINUMCHI");
modelBuilder.Entity().HasKey(table => new {
table.piditta
});
}
}
}