EFCore中CoreFrist多个上下文

Posted 我的未来方程式i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EFCore中CoreFrist多个上下文相关的知识,希望对你有一定的参考价值。

CoreFrist多个上下文

出现这个怎么解决:No DbContext was found in assembly\' ShopCore\'. Ensure that you\' re using the correct assembly and that the type is neither abstract nor generic.

 

 

add-migration migrationname -c AppDbContext

 

 

如果出现:Unable to create an object of type \'AppDbContext\'. For the different patterns supported at design time, see https://go.microsoft.com/fwlink/?linkid=851728

 

就是说明:缺少无参构造函数

例如:

public AppDbContext()
        {

        }

  

 

以上是关于EFCore中CoreFrist多个上下文的主要内容,如果未能解决你的问题,请参考以下文章

EF Core - 导致 CS1941 的多个连接条件

Abp vnext EFCore 实现动态上下文DbSet踩坑记

EFCore框架支持多数库 支持读写分离框架支持事务提交保存

EFCore 无法识别数据库提供程序

csharp EFCore数据库上下文扩展

使用EFCore执行上下文不存在的SQL语句