首页 > 其他分享 >dotnet ef migrations

dotnet ef migrations

时间:2024-12-20 16:34:27浏览次数:7  
标签:ef migrations project dotnet BookApi your

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\

标签:ef,migrations,project,dotnet,BookApi,your
From: https://www.cnblogs.com/cookie2030/p/18619515

相关文章

  • UEFI基本逻辑与接口介绍
    背景所以需要对这块比较新的技术进行学习。在学习之前,有必要了解一下高通UEFI启动流程。原文(有删改):https://blog.csdn.net/Ciellee/article/details/113519478参考文档:80_P2484_117_B_UEFI_With_XBL_On_MSM8998_SDM660_SDM总览先来看下SDM660芯片冷启动的流程。可以看出,在设......
  • Makefile简单学习
    Makefile简单学习什么是Makefile?一个工程中的源文件不计其数,其按类型、功能、模块分别放在若干个目录中,makefile定义了一系列的规则来指定,哪些文件需要先编译,哪些文件需要后编译,哪些文件需要重新编译,甚至于进行更复杂的功能操作,因为makefile就像一个Shell脚本一样,其中也......
  • 基于vgg16和efficientnet卷积神经网络的天气识别系统(pytorch框架) 图像识别与分类 前
    基于vgg16和efficientnet卷积神经网络的天气识别系统(pytorch框架)前端界面:flask+python,UI界面:pyqt5+python这是一个完整项目,包括代码,数据集,模型训练记录,前端界面,ui界面,各种指标图:包括准确率,精确率,召回率,F1值,损失曲线,准确率曲线等卷积模型采用vgg16模型或efficien......
  • spring boot使用Jwt令牌时出现 java.lang.NoClassDefFoundError: javax/xml/bind/Data
    问题根源    在Java9及更高版本中,Java平台经历了模块化系统(Jigsaw项目)的重大变化。作为这一变化的一部分,某些API被移出了默认的JDK发行版,其中包括JAXB(JavaArchitectureforXMLBinding)API。因此,在使用这些被移除的API时,如果应用程序或库没有适当地包......
  • 你的语言模型实际是一个奖励模型!Direct Preference Optimization:Your Language Model
    直接偏好优化:你的语言模型实际上是一个奖励模型......
  • 【PyTorch】FutureWarning: You are using `torch.load` with `weights_only=False` (
    【PyTorch】FutureWarning:Youareusingtorch.loadwithweights_only=False(thecurrentdefault问题描述model.load_state_dict(torch.load(model_path))FutureWarning:Youareusing`torch.load`with`weights_only=False`(thecurrentdefaultvalue),......
  • 【Python】调用 image.verify() 后报错 AttributeError_ ‘PngImageFile‘ object has
    【Python】调用image.verify()后报错AttributeError:‘PngImageFile’objecthasnoattribute‘load_seek’问题描述file=request.files.get('file')iffile:file_content=file.read()file_stream=BytesIO(file_content)......
  • UT 覆盖率 报告 dotnet-coverage
    安装dotnet-coverage和dotnet-reportgeneratordotnettoolinstall-gdotnet-coveragedotnettoolinstall-gdotnet-reportgenerator-globaltool运行测试,输出XML格式:dotnet-coveragecollect-fxml-ocoverage.xmldotnettest<solution/project>例如:在测试......
  • 【内向基环树】codeforces 2044 G1. Medium Demon Problem (easy version)
    前言基环树,又名环套树,是具有\(n\)个节点和\(n\)条边的图,比树多出现一个环。基环树也根据边的有向和无向分为了有向基环树和无向基环树。有向基环树又可以分为内向基环树和外向基环树。对于有向基环树,若基环树的每个节点的出度均为\(1\),则称为内向基环树;若基环树的每个节点的......
  • CHIEF论文粗读
     具体解决的问题该论文解决了癌症诊断和预后预测中病理图像分析的泛化性问题。传统的人工智能病理图像分析方法通常针对特定任务设计,存在以下主要问题:依赖于大量标注数据,难以处理多种癌症类型或不同病理实验室生成的图像。泛化能力差,容易受图像来源、扫描仪和处理方法......