using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Lift_web_dbcontext { /// public class LIFT_WEB_MAGAZZINIDbContext : DbContext { /// public DbSet? Magaz { get; set; } /// public LIFT_WEB_MAGAZZINIDbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToTable("DEMOMAGAZZIN"); modelBuilder.Entity().HasKey(table => new { table.mgcodmag }); } } }