作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Visual Studio 可以运行命令
Add-Migration InitialCreate -IgnoreChanges
dotnet ef migrations add InitialCreate
最佳答案
在没有任何其他方式的情况下,可以清空所有代码迁移的Up和Down方法块并运行数据库更新。
public partial class Initial : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
}
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
关于.net - CLI 中 Entity Framework 核心的 -IgnoreChanges 开关等效于什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53210060/
使用 Visual Studio 可以运行命令 Add-Migration InitialCreate -IgnoreChanges 在使用 Code First 工作流创建现有数据库模型的第一次迁移
我是一名优秀的程序员,十分优秀!