DCSIMG
Spreading Inheritance Tree Mapping Across Assemblies in Code First - Gil Fink's Blog

Gil Fink's Blog

Fink about IT

News

Microsoft MVP

My Facebook Profile My Twitter Profile My Linkedin Profile

Locations of visitors to this page

Creative Commons License

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
© Copyright 2013 Gil Fink

Hebrew Articles

Index Pages

My OSS Projects

English Articles

Spreading Inheritance Tree Mapping Across Assemblies in Code First

Spreading Inheritance Tree Mapping Across Assemblies in Code First

Today I helped a client to solve a problem regarding EF4.1 Code First. EF4.1The issue that they banged their heads with was an inheritance tree mapping in their model which is spread across two different assemblies. When they run the application they always got the same exception – “mapping and metadata information could not be found for entitytype ‘entity name’”. So they sent me a sample solution and I checked it and gave them the solution.

The Client Provided Model

In one class library there are the following two classes:

namespace CodeFirstTest
{
    public class Base
    {
        public int Id { get; set; }
    } 
 
    public class DeriveB : Base
    {
    }
}

In another console application there is another derived class for the Base class:

namespace CodeFirstTest
{
    public class DeriveA : Base
    {
    }
}

Also, in the same console application they have created the context:

namespace CodeFirstTest
{
  public class TheContext : DbContext
  {
    public TheContext()
    {
    }
 
    public DbSet<Base> MyModel { get; set; }
  }
}

Running the following code will produce the “mapping and metadata information could not be found for entitytype ‘entity name’” exception:

namespace CodeFirstTest
{
  class Program
  {
    static void Main(string[] args)
    {
      Database.SetInitializer<TheContext>(new DropCreateDatabaseIfModelChanges<TheContext>());
 
      using (TheContext ctx = new TheContext())
      {
        var obj1 = new DeriveA();
        ctx.MyModel.Add(obj1);
 
        var obj2 = new DeriveB();
        ctx.MyModel.Add(obj2);
 
        obj2 = new DeriveB();
        ctx.MyModel.Add(obj2);
        ctx.SaveChanges();
      }
 
      using (TheContext ctx = new TheContext())
      {
        var res = ctx.MyModel.Where(b => b.Id == 2).SingleOrDefault();
      }
    }
  }
}

The Solution

First I reproduced the exception and then tried to figure out what might be the mapping error that they get. Since the problem is in the entity type mapping then it must be caused by things like:

  • Type mismatches
  • Misspelled properties 
  • Properties that are missing  
  • More

The solution to the problem is to add mapping to all the entities in the context. In order to do that you will have to override the OnModelCreating method and map all the entities:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
  base.OnModelCreating(modelBuilder);
  modelBuilder.Entity<Base>();
  modelBuilder.Entity<DeriveA>();
  modelBuilder.Entity<DeriveB>();
}
This solves the problem and produces the relevant database when the console application is running.

Summary

It took me a short period of time in order to find the mapping problem that my client had. The solution for the problem is simple but I would expect that Code First will supply the solution within. Maybe in vNext…

Comments

DotNetKicks.com said:

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# April 17, 2011 4:12 PM

Spreading Inheritance Tree Mapping Across... | .NET and ADO.NET Entity Framework | Syngu said:

Pingback from  Spreading Inheritance Tree Mapping Across... | .NET and ADO.NET Entity Framework | Syngu

# July 13, 2011 1:36 PM