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多个上下文的主要内容,如果未能解决你的问题,请参考以下文章
Abp vnext EFCore 实现动态上下文DbSet踩坑记