‘ProjectName.Program+Category’ was not mapped. Check that the type has not been explicitly excluded by using the Ignore method or NotMappedAttribute data annotation

If you follow the code from this blog http://blogs.msdn.com/b/adonet/archive/2011/03/15/ef-4-1-code-first-walkthrough.aspxthen you might hit the error “’ProjectName.Program+Category’ was not mapped. Check that the type has not been explicitly excluded by using the Ignore method or NotMappedAttribute data annotation.”

I repeat the code in below.

publicclassCategory

{

  publicstring CategoryId { get; set; }

  publicstring Name { get; set; }

 

  publicvirtualICollection<Product> Products { get; set; }

}

 

publicclassProduct

{

  publicint ProductId { get; set; }

  publicstring Name { get; set; }

  publicstring CategoryId { get; set; }

 

  publicvirtual Category Category { get; set; }

}

 

publicclassProductContext : DbContext

{

  public ProductContext()

  {

  }

 

  public DbSet<Category> Categories { get; set; }

  public DbSet<Product> Products { get; set; }

}

 

When comes to

static void Main(string[] args)

{

    using (var db = new ProductContext())

    {

        // Add a food category

        var food = new Category { CategoryId = “FOOD”, Name = “Foods” };

        db.Categories.Add(food);

        int recordsAffected = db.SaveChanges();

 

        Console.WriteLine(

            “Saved {0} entities to the database, press any key to exit.”,

            recordsAffected);

 

        Console.ReadKey();

    }

}

The error will throw at the line using (var db = new ProductContext()).

Maybe when the blogger blogs the EF 4.1 the console project is able to run Code First code. In VS 2012 the console project will not run this code. The code can be run in Web project.

You can also download a single solution from http://skydrive.live.com. The sample file name is WebAppCodeFirst.rar My MSN ID is chanmmn@hotmail.com.

About these ads

About chanmingman

Ming Man is a senior manager for a development company. With 20 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net and tagged , . Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s