ASP .Net核心 - 实体框架7

时间:2016-11-28 10:03:39

标签: .net entity-framework-core core

我正在使用数据访问层,我在这里定义了我的实体& ApplictionDbContext。我确实有单独的Web项目,并尝试连接到数据库,但在DAL层中收到以下错误。

enter image description here

2 个答案:

答案 0 :(得分:0)

我自己尝试过并且能够解决问题,您需要从参考中删除“Microsoft.EntityFrameworkCore.SqlServer”

答案 1 :(得分:-1)

尝试将其添加到“dependencies”部分下的“project.json”文件中:

/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
module.exports = function(source) {
    this.cacheable && this.cacheable();
    var value = typeof source === "string" ? JSON.parse(source) : source;
    this.value = [value];
    return "module.exports = " + JSON.stringify(value) + ";";
}