using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Lift_web_dbcontext { /// public class LIFT_WEB_AZIENDARIF_DbContext : DbContext { /// public DbSet? Azi { get; set; } /// public LIFT_WEB_AZIENDARIF_DbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("PIAZIRIF"); modelBuilder.Entity().HasKey(table => new { table.piazihoc, table.picodtec, table.pirifazi }); } } }