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