在迁移文件中使用MigrationBuilder操作数据
本文关键字:MigrationBuilder 操作 操作数 数据 迁移 文件 | 更新日期: 2023-09-27 18:05:57
在我的数据库,我有两个表;人物和别名。原来People包含一系列字段,包括FirstName
、MiddleName
、LastName
。Alias还包含FirstName
、MiddleName
和LastName
,但是行与People中的行绑定,People是唯一的人。
我已经更改了模型,使People不再包含FirstName
, MiddleName
和LastName
,并将字段IsPrimary
添加到Alias。
我已经创建了一个迁移文件,它应该反映这些表的新状态。我现在要做的是添加到迁移文件代码中,该代码将采用People表中的每一行,获取FirstName
, MiddleName
和LastName
字段中的数据,在Alias中创建新行,将FirstName
, MiddleName
和LastName
插入到新行中,并将IsPrimary
字段设置为true。这将在Up方法中。我需要对down函数做相反的操作
如何在迁移文件中执行这些操作?
下面是迁移文件的一部分:
using System;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Metadata;
namespace ACC.Data.Migrations
{
public partial class Add_IsPrimary_To_Alias : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "People",
columns: table => new
{
Id = table.Column<Guid>(nullable: false),
DOB = table.Column<DateTime>(nullable: true),
EyeColor = table.Column<string>(nullable: true),
Facility = table.Column<string>(nullable: true),
HairColor = table.Column<string>(nullable: true),
HeightInches = table.Column<int>(nullable: false),
Notes = table.Column<string>(nullable: true),
PrimaryPhone = table.Column<string>(nullable: true),
Race = table.Column<string>(nullable: true),
Sex = table.Column<string>(nullable: true),
WeightLbs = table.Column<int>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_People", x => x.Id);
});
migrationBuilder.CreateTable(
name: "Aliases",
columns: table => new
{
Id = table.Column<Guid>(nullable: false),
FirstName = table.Column<string>(nullable: true),
IsPrimary = table.Column<bool>(nullable: false),
LastName = table.Column<string>(nullable: true),
MiddleName = table.Column<string>(nullable: true),
PersonId = table.Column<Guid>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Aliases", x => x.Id);
table.ForeignKey(
name: "FK_Aliases_People_PersonId",
column: x => x.PersonId,
principalTable: "People",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Aliases");
migrationBuilder.DropTable(
name: "People");
}
}
}
经过一番寻找,我发现了一些关于数据运动和自定义SQL的文档。
这是否意味着我想要达到的目标是不可能的?还没有对数据移动的原生支持…
谢谢!
您可以使用migrationBuilder。Sql用于此目的,其中您可以传递Sql用于别名更新等。您不能使用任何模型或上下文,因为它可能与尚未更新的数据库不兼容。