I\'m using .NET 4.0, MVC3, and EF5 with code first.
My solution is split up into three projects, with the dependencies as indicated:
Project.Web -> Project.B
For whom who made this mistake like I did:
Your context class must inherits from DbContext, just like that:
DbContext
public class DirectorRequestContext : DbContext { public DbSet DirectorRequests { get; set; } }