我有一个班级:
namespace MyApp.Data {
public class ApiKeysContext : DbContext ...
在同一解决方案的其他项目中,我有一个对MyApp.Data.csproj的引用 虽然,在制作对象时:
var context = new MyApp.Data.ApiKeysContext();
Visual Studio说我错过了一个引用。我该怎么办呢?
答案 0 :(得分:0)
我应该像每个人一样愚蠢地给每个人发一个答案...... 您不仅应该在类的项目中添加引用,而且还应该为它的所有父类添加引用。
@TheVillageIdiot应该获得那个
的积分