做了一个.net MVC的练习,使用了EF,手动修改了Modal中的数据的类型,需要重新生成数据库。
使用下面的方法,虽然不是最好的,权且记录一下。
正常情况下,在PMC中执行如下命令
Add-Migration InitialCreate
会在项目中生成一个这样的文件,
Migrations/{timestamp}_InitialCreate.cs
该文件的内容如下:
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MvcMovie.Migrations
{
public partial class InitialCreate : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Movie",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Title = table.Column<string>(type: "nvarchar(max)", nullable: true),
ReleaseDate = table.Column<DateTime>(type: "datetime2", nullable: false),
Genre = table.Column<string>(type: "nvarchar(max)", nullable: true),
Price = table.Column<decimal>(type: "decimal(18,2)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Movie", x => x.Id);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Movie");
}
}
}
再执行
Update-Database
至此,数据库中会实际的表了。
如果将modal中的某个字段的类型修改了,编译的时候会报错,将相关文件修改以后,需要将修改同步到数据库中。
执行如下命令,报错了。
Add-Migration InitialCreate
Update-Database
查看Migrations下的MvcMovieContextModelSnapshot文件,发现其中的类型并没有修改。
很粗暴的解决方法,将Migrations下的MvcMovieContextModelSnapshot文件和{timestamp}_InitialCreate文件删除。将数据库也删掉。然后执行
Add-Migration InitialCreate
Update-Database
就好了。
显然这个方法是有问题的。下面这个文章写得貌似比较清楚。可参考。
https://zhuanlan.zhihu.com/p/196761386
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有