我是靠谱客的博主 心灵美路人,最近开发中收集的这篇文章主要介绍Unable to create an object of type 'DbContext'.For the different patterns supported at design time..,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
如果在做EFCore migration时碰到类似错误:Unable to create an object of type 'DbContext'. For the different patterns supported at design time, see https://go.microsoft.com/fwlink/?linkid=851728
可尝试以下步骤进行处理:
- 检查是否未实现
EFContext
默认构造函数 - 尝试清理解决方案,清除目录下的bin和obj
- 如果还不行,尝试在
DbContext
同级目录下添加类DesignTimeDbContextFactory
public class DesignTimeDbContextFactory : IDesignTimeDbContextFactory<EFContext>
{
public EFContext CreateDbContext(string[] args)
{
var optionsBuilder = new DbContextOptionsBuilder<EFContext>();
optionsBuilder.UseSqlite($"tmp.db");
return new EFContext(optionsBuilder.Options);
}
}
最后
以上就是心灵美路人为你收集整理的Unable to create an object of type 'DbContext'.For the different patterns supported at design time..的全部内容,希望文章能够帮你解决Unable to create an object of type 'DbContext'.For the different patterns supported at design time..所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复