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