Code First 启用迁移时出错 "No context type was found in the assembly"

问题:Code First 启用迁移时找不到上下文DbContext所在的项目。

PM> Enable-Migrations
No context type was found in the assembly 'Road.Web'.

解决方法:PM> Enable-Migrations -ProjectName Road.Data -StartUpProjectName Road.Web -Verbose

PM> Enable-Migrations
No context type was found in the assembly 'Road.Web'.
PM> Enable-Migrations -ProjectName Road.Data -StartUpProjectName Road.Web -Verbose
Using StartUp project 'Road.Web'.
正在检查上下文的目标是否为现有数据库...
检测到使用数据库初始值设定项创建的数据库。已搭建与现有数据库对应的迁移“201309080209510_InitialCreate”的基架。若要改用自动迁移,请删除 Migrations 文件夹并重新运行指定了 -EnableAutomaticMigrations 参数的 Enable-Migrations。
已为项目 Road.Data 启用 Code First 迁移。

参考资料:http://stackoverflow.com/questions/16497938/ef-5-enable-migrations-no-context-type-was-found-in-the-assembly

你可能感兴趣的:(assembly)