问题: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 迁移。