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