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