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