Consider the following hierarchy:
Department -> Category -> Product
(Each department contains multiple categories, each of which contains multiple products.)
Using the Kimball approach to dimensional modeling, I have created a ProductDim table with the following columns:
ProductKey
Product
Category
Department
I'm trying to use EF 4.1 to map my Department, Category, and Product entities to the ProductDim table. Here is a simplified version of the relevant classes:
public class Department
{
public string Name { get; set; }
}
public class Category
{
public string Name { get; set; }
}
public class Product
{
public string Name { get; set; }
}
public class MyContext : DbContext
{
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<Department>().ToTable("ProductDim");
modelBuilder.Entity<Department>().HasKey(t => t.Name);
modelBuilder.Entity<Department>().Property(t => t.Name).HasColumnName("Department");
modelBuilder.Entity<Category>().ToTable("ProductDim");
modelBuilder.Entity<Category>().HasKey(t => t.Name);
modelBuilder.Entity<Category>().Property(t => t.Name).HasColumnName("Category");
modelBuilder.Entity<Product>().ToTable("ProductDim");
modelBuilder.Entity<Product>().HasKey(t => t.Name);
modelBuilder.Entity<Product>().Property(t => t.Name).HasColumnName("Product");
}
}
The problem is that when I try to use these classes, I get the following exception:
System.InvalidOperationException : The entity types 'Category' and 'Department' cannot share table 'ProductDim' because they are not in the same type hierarchy or do not have a valid one to one foreign key relationship with matching primary keys between them.
Is there any workaround for this? And if not, can Entity Framework be used successfully with dimensionally-modeled databases?