using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Siet_dbcontext
{
///
public class SIET_NOTIFICHE_DbContext : DbContext
{
///
public DbSet? Notif { get; set; }
///
public SIET_NOTIFICHE_DbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("PINOTIFI");
modelBuilder.Entity().HasKey(table => new {
table.picodazi,
table.piserial
});
}
}
}