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