我正在使用ef代码优先, 我希望将我的实体放在类库项目中,但是有问题,我在NuGet中添加了entityFramework,但我无法使用它,当我想引用项目时: 图像有错误 http://f.roozbehi.ir/Screenshot%20(40).png
这是我的 project.json 代码:
"version": "1.0.0-*",
"description": "Entities Class Library",
"authors": [ "haviro" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"dependencies": {
"System.Collections": "4.0.10-beta-23019",
"System.Linq": "4.0.0-beta-23019",
"System.Threading": "4.0.10-beta-23019",
"System.Runtime": "4.0.10-beta-23019",
"Microsoft.CSharp": "4.0.0-beta-23019",
"EntityFramework": "6.1.3"
},
"frameworks": {
"dotnet": { }
}
我该怎么办?
答案 0 :(得分:0)
屏幕截图和项目json表示您尚未添加任何Target(dotnet)框架。因此您无法访问EntityFramework。尝试通过属性或通过JSON添加目标框架。