Arredamento di interni: come trovare negozi di arredamenti
Come Trovare Negozi di Arredamento per Interni.
Come Scegliere un Negozio di Arredamento per Interni.
Scopri come trovare i migliori negozi di arredamento per interni e trasforma il tuo spazio in un ambiente unico e accogliente. Questo articolo offre suggerimenti utili per scegliere mobili e complementi d'arredo, ottimizzando il tuo progetto di ristrutturazione per un risultato straordinario e personalizzato.
Trova professionisti vicino a te
Trova professionisti
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CodeFirstWithExistingDatabase
{
public class PlutoContext : DbContext
{
public PlutoContext()
: base("name=DefaultConnection")
{
}
public DbSet Courses { get; set; }
public DbSet Authors { get; set; }
public DbSet Tags { get; set; }
//Override the OnModelCreating method to configure the many-to-many relationship
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity()
.HasMany(c => c.Authors).WithMany(a => a.Courses)
.Map(mc =>
{
mc.ToTable("CourseAuthors");
mc.MapLeftKey("CourseId");
mc.MapRightKey("AuthorId");
});
modelBuilder.Entity()
.HasMany(c => c.Tags).WithMany(t => t.Courses)
.Map(mc =>
{
mc.ToTable("CourseTags");
mc.MapLeftKey("CourseId");
mc.MapRightKey("TagId");
});
}
}
}