By default if you apply inheritance in Entity Framework 4.1 the model that will be used is table per Hierarchy. Meaning that this object model:
So we get one table containing all the fields from all the classes in the hierarchy and one additional discriminator column which will be filled with the name of the class. Using that value EF knows what class it needs to create an instance from. Create a mapping for this manually would be done by subclassing DbContext and implement OnModelCreating as illustrated in the following piece of code:
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity()
.Map(x => x.ToTable("Products"))
.Map(x => x.ToTable("Products"))
.Map(x=>x.ToTable("Products"))
.Map(x => x.ToTable("Products"));
base.OnModelCreating(modelBuilder);
}