using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Lift_web_dbcontext
{
///
public class LIFT_WEB_PRESEDbContext : DbContext
{
///
public DbSet? Prese { get; set; }
///
public LIFT_WEB_PRESEDbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("PRESA");
modelBuilder.Entity().HasKey(table => new {
table.picodazi,
table.pimpianto,
table.picodint,
table.pidatman
});
}
}
}