"Update-DataBase" 无法使用 Asp 样板模块零代码优先
"Update-DataBase" not working using Asp BoilerPlate Module Zero with code first
我正在尝试使用项目 https://github.com/aspnetboilerplate/module-zero。
在页面给出的解释中我卡在
Run DB migrations (Run 'Update-Database' command from Package Manager
Console while ModuleZeroSampleProject.EntityFramework is selected as
default project) to create database and initial data.
我收到错误消息:
No migrations configuration type was found in the assembly
'Abp.Zero.EntityFramework'. (In Visual Studio you can use the
Enable-Migrations command from Package Manager Console to add a
migrations configuration).
我已经尝试过:
- 运行 'Update-Database' 选择每个项目作为默认项目。
- 运行 'Enable-Migrations' 选择每个项目作为默认项目。
None 这些作品。
(过去我总是先使用数据库,所以这是我第一次尝试编写代码,所以我很可能遗漏了一些东西。)
已解决。我需要:
- 运行 Visual Studio 作为管理员
- 使用 'sample' 文件夹中的项目而不是 'src' 文件夹中的项目
我正在尝试使用项目 https://github.com/aspnetboilerplate/module-zero。
在页面给出的解释中我卡在
Run DB migrations (Run 'Update-Database' command from Package Manager Console while ModuleZeroSampleProject.EntityFramework is selected as default project) to create database and initial data.
我收到错误消息:
No migrations configuration type was found in the assembly 'Abp.Zero.EntityFramework'. (In Visual Studio you can use the Enable-Migrations command from Package Manager Console to add a migrations configuration).
我已经尝试过: - 运行 'Update-Database' 选择每个项目作为默认项目。 - 运行 'Enable-Migrations' 选择每个项目作为默认项目。 None 这些作品。
(过去我总是先使用数据库,所以这是我第一次尝试编写代码,所以我很可能遗漏了一些东西。)
已解决。我需要:
- 运行 Visual Studio 作为管理员
- 使用 'sample' 文件夹中的项目而不是 'src' 文件夹中的项目