问候我有一个现有的数据库,我将使用ASP.NET Core构建我的应用程序,基于此tutorial,我已经安装了Entity Framework核心的软件包,现在我必须转换我的表,所以教程说我使用了这个命令:
Scaffold-DbContext "Server=
(localdb)\mssqllocaldb;Database=RFID;Trusted_Connection=True;"
Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
然而它一直让我犯这个错误:
C:\ Users \ user11 \ documents \ visual studio中的无效JSON文件 2015 \项目\ CoreOAS \ SRC \ CoreOAS \ project.json
我该怎么办?
答案 0 :(得分:3)
如果你有comment
如下,那么上面的错误将会发出。所以你必须删除它。
错误:
// required for EF <--- this is the issue
"buildOptions": {
"emitEntryPoint": true
},
正确的方式:
"buildOptions": {
"emitEntryPoint": true
},