在 Visual Studio MAC 中使用迁移

发布于 2025-01-14 03:44:53 字数 435 浏览 2 评论 0原文

我正在使用 Visual Studio Mac 2022 Preview 进行编程。最初我是从 Windows 构建我的项目,它更容易编程。现在我转向MAC。我的解决方案由 3 个项目组成,一个是 ASP.NET Core Web API,另一个是 DataAccess 类库,该解决方案中的最后一个项目是模型类库。

数据库迁移包含在 DataAccess ClassLibrary 中,连接字符串放置在 WebApi 项目中。当我尝试执行 add-migration (dotnet ef migrations add 'migration-name') 时,我收到错误。我已全局初始化 dotnet ef 工具(dotnet 工具安装 — 全局 dotnet-ef)。

任何人都可以帮助我在单独的类库中进行迁移吗?如果我能一步一步地了解过程,那会更有帮助。

I am using visual studio Mac 2022 Preview for the programming. Initially I am building my project from windows and its much easier for programming. Now I turned to MAC. My Solution is consider by 3 projects, One is a ASP.NET Core Web API and another is DataAccess Class Library and the last project in that solution is Model Class Library.

The Database migration is included in the DataAccess ClassLibrary and the connection string is placed in the WebApi project. When I tried to do add-migration (dotnet ef migrations add ‘migration-name’) I am getting the error. I have globally initialise the dotnet ef tool (dotnet tool install — global dotnet-ef).

Can any one help me to do the migration in a separate Class Library. If I get the step by process, it will be more helpful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮萍、无处依 2025-01-21 03:44:53

您必须向添加迁移脚本添加其他选项。

dotnet ef migrations add 'migration-name' -s <启动项目>; -p <迁移项目>

启动项目将是您的 API 项目。迁移项目将是数据项目。

您还可以找到更多有用的内容。

Entity Framework Core 工具参考 - .NET Core CLI - 常见选项

You have to add additional options to your add migration script.

dotnet ef migrations add ‘migration-name’ -s <startup project> -p <migration project>

Startup project would be your API project. Migration project would be data project.

There are more you can find useful.

Entity Framework Core tools reference - .NET Core CLI - Common Options

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文