using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Marrocco_dbcontext
{
///
public class MARRO_VT_ANAG_DbContext : DbContext
{
///
public DbSet? Anagtable { get; set; }
///
public MARRO_VT_ANAG_DbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("MARROCONTI");
modelBuilder.Entity().HasKey(table => new
{
table.antipcon,
table.ancodice
});
}
}
}