怪物奇妙物语

宇宙无敌超级美少男的怪物奇妙物语

首页 新随笔 联系 管理
  819 随笔 :: 0 文章 :: 2 评论 :: 16万 阅读

dotnet ef migrations

Infrastructure\DependencyInjection\InfrastructureDependencyInjection.cs

services.AddDbContext<MySqlDatabase>(options =>
{
options.UseSqlServer(ConnectionString);
});
Your target project 'BookApi' doesn't match your migrations assembly 'Infrastructure'.
Either change your target project or change your migrations assembly.
Change your migrations assembly by using DbContextOptionsBuilder.
E.g. options.UseSqlServer(connection, b => b.MigrationsAssembly("BookApi")).
By default, the migrations assembly is the assembly containing the DbContext.
Change your target project to the migrations project
by using the Package Manager Console's Default project drop-down list,
or by executing "dotnet ef" from the directory
containing the migrations project.

中英文对照,翻译上面的内容

services.AddDbContext<MySqlDatabase>(options =>
{
options.UseSqlServer(ConnectionString, b => b.MigrationsAssembly("BookApi"));
});

目录结构

├─Application
├─BookApi
├─BookHandlerTest
├─Domain
└─Infrastructure

迁移命令

dotnet ef migrations add 'init' --project .\BookApi\
dotnet ef database update --project .\BookApi\
posted on   超级无敌美少男战士  阅读(5)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 清华大学推出第四讲使用 DeepSeek + DeepResearch 让科研像聊天一样简单!
· 推荐几款开源且免费的 .NET MAUI 组件库
· 实操Deepseek接入个人知识库
· 易语言 —— 开山篇
· Trae初体验
历史上的今天:
2022-12-21 agv_fastapi_socket_mock
点击右上角即可分享
微信分享提示