Scaffold-DbContext不生成模型

时间:2017-12-07 22:25:11

标签: sql-server entity-framework model entity-framework-core dbcontext

我正在尝试运行Scaffold-DbContext来从旧系统生成一些模型。我正在运行以下命令:

Scaffold-DbContext "Data Source=localhost\SQLEXPRESS;Initial Catalog=MAINT_TRAINING;Integrated Security=True" Microsoft.EntityFrameworkCore.SqlServer

问题是我绝对没有输出......没有型号,没有错误,没有确认......

数据库中的表都有主键。

我做错了吗?

1 个答案:

答案 0 :(得分:2)

您可能会遇到问题#10298。尝试将以下内容添加到*.csproj

<PropertyGroup>
  <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
</PropertyGroup>