实体框架核心的反向引擎

时间:2016-08-29 09:02:07

标签: entity-framework asp.net-core entity-framework-core

问候我有一个现有的数据库,我将使用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

我该怎么办?

1 个答案:

答案 0 :(得分:3)

如果你有comment如下,那么上面的错误将会发出。所以你必须删除它。

错误:

 // required for EF <--- this is the issue
  "buildOptions": {
    "emitEntryPoint": true
  },

正确的方式:

 "buildOptions": {
        "emitEntryPoint": true
      },

您可以在此处详细了解:their (JSON) decision not to support comments