몇 개의 엔터티와 해당 탐색 속성의 이름을 변경하고 EF 5에서 새 마이그레이션을 생성했습니다. EF 마이그레이션의 이름 변경과 마찬가지로 기본적으로 개체를 삭제하고 다시 만듭니다. 내가 원하는 것이 아니기 때문에 마이그레이션 파일을 처음부터 작성해야했습니다.
public override void Up()
{
DropForeignKey("dbo.ReportSectionGroups", "Report_Id", "dbo.Reports");
DropForeignKey("dbo.ReportSections", "Group_Id", "dbo.ReportSectionGroups");
DropForeignKey("dbo.Editables", "Section_Id", "dbo.ReportSections");
DropIndex("dbo.ReportSectionGroups", new[] { "Report_Id" });
DropIndex("dbo.ReportSections", new[] { "Group_Id" });
DropIndex("dbo.Editables", new[] { "Section_Id" });
RenameTable("dbo.ReportSections", "dbo.ReportPages");
RenameTable("dbo.ReportSectionGroups", "dbo.ReportSections");
RenameColumn("dbo.ReportPages", "Group_Id", "Section_Id");
AddForeignKey("dbo.ReportSections", "Report_Id", "dbo.Reports", "Id");
AddForeignKey("dbo.ReportPages", "Section_Id", "dbo.ReportSections", "Id");
AddForeignKey("dbo.Editables", "Page_Id", "dbo.ReportPages", "Id");
CreateIndex("dbo.ReportSections", "Report_Id");
CreateIndex("dbo.ReportPages", "Section_Id");
CreateIndex("dbo.Editables", "Page_Id");
}
public override void Down()
{
DropIndex("dbo.Editables", "Page_Id");
DropIndex("dbo.ReportPages", "Section_Id");
DropIndex("dbo.ReportSections", "Report_Id");
DropForeignKey("dbo.Editables", "Page_Id", "dbo.ReportPages");
DropForeignKey("dbo.ReportPages", "Section_Id", "dbo.ReportSections");
DropForeignKey("dbo.ReportSections", "Report_Id", "dbo.Reports");
RenameColumn("dbo.ReportPages", "Section_Id", "Group_Id");
RenameTable("dbo.ReportSections", "dbo.ReportSectionGroups");
RenameTable("dbo.ReportPages", "dbo.ReportSections");
CreateIndex("dbo.Editables", "Section_Id");
CreateIndex("dbo.ReportSections", "Group_Id");
CreateIndex("dbo.ReportSectionGroups", "Report_Id");
AddForeignKey("dbo.Editables", "Section_Id", "dbo.ReportSections", "Id");
AddForeignKey("dbo.ReportSections", "Group_Id", "dbo.ReportSectionGroups", "Id");
AddForeignKey("dbo.ReportSectionGroups", "Report_Id", "dbo.Reports", "Id");
}
내가 할 노력하고있어 모든 이름 바꾸기입니다 dbo.ReportSections
에 dbo.ReportPages
다음 dbo.ReportSectionGroups
에 dbo.ReportSections
. 그럼 난에 외래 키 컬럼의 이름을 바꿀 필요가 dbo.ReportPages
에서 Group_Id
에 Section_Id
.
테이블을 함께 연결하는 외래 키와 인덱스를 삭제하고 테이블과 외래 키 열의 이름을 바꾼 다음 인덱스와 외래 키를 다시 추가합니다. 이것이 작동 할 것이라고 생각했지만 SQL 오류가 발생합니다.
Msg 15248, 수준 11, 상태 1, 프로 시저 sp_rename, 줄 215 @objname 매개 변수가 모호하거나 요청 된 @objtype (COLUMN)이 잘못되었습니다. Msg 4902, 수준 16, 상태 1, 줄 10 “dbo.ReportSections”개체가 없거나 권한이 없기 때문에 찾을 수 없습니다.
나는 여기서 무엇이 잘못되었는지 쉽게 알 수 없습니다. 어떤 통찰력이라도 엄청나게 도움이 될 것입니다.
답변
신경 쓰지 마. 나는이 방법을 정말로 필요했던 것보다 더 복잡하게 만들고 있었다.
이것이 내가 필요한 전부였습니다. rename 메서드는 sp_rename 시스템 저장 프로 시저에 대한 호출을 생성 하고 새 열 이름이있는 외래 키를 포함하여 모든 것을 처리 한 것 같습니다.
public override void Up()
{
RenameTable("ReportSections", "ReportPages");
RenameTable("ReportSectionGroups", "ReportSections");
RenameColumn("ReportPages", "Group_Id", "Section_Id");
}
public override void Down()
{
RenameColumn("ReportPages", "Section_Id", "Group_Id");
RenameTable("ReportSections", "ReportSectionGroups");
RenameTable("ReportPages", "ReportSections");
}
답변
Migration 클래스에서 필요한 코드를 수동으로 작성 / 변경하는 것을 좋아하지 않는 경우 필요한 코드를 자동으로 만드는 2 단계 접근 방식을 따를 수 있습니다 RenameColumn
.
단계 중 하나 를 사용하여이 ColumnAttribute
추가 마이그레이션 한 후 (예를 새로운 열 이름을 소개합니다 Add-Migration ColumnChanged
)
public class ReportPages
{
[Column("Section_Id")] //Section_Id
public int Group_Id{get;set}
}
2 단계 : 속성 이름을 변경 Add-Migration ColumnChanged -force
하고 패키지 관리자 콘솔에서 동일한 마이그레이션 (예 :)에 다시 적용
public class ReportPages
{
[Column("Section_Id")] //Section_Id
public int Section_Id{get;set}
}
Migration 클래스를 보면 자동으로 생성 된 코드가 RenameColumn
.
답변
Hossein Narimani Rad의 답변을 조금 확장하려면 System.ComponentModel.DataAnnotations.Schema.TableAttribute 및 System.ComponentModel.DataAnnotations.Schema.ColumnAttribute를 사용하여 테이블과 열의 이름을 각각 바꿀 수 있습니다.
다음과 같은 몇 가지 이점이 있습니다.
- 이렇게하면 이름 마이그레이션이 자동으로 생성 될뿐만 아니라
- 또한 외래 키를 맛있게 삭제하고 새 테이블 및 열 이름에 대해 다시 생성하여 외래 키와 적절한 이름을 지정합니다.
- 이 모든 것이 테이블 데이터 손실없이
예를 들어 다음을 추가합니다 [Table("Staffs")]
.
[Table("Staffs")]
public class AccountUser
{
public long Id { get; set; }
public long AccountId { get; set; }
public string ApplicationUserId { get; set; }
public virtual Account Account { get; set; }
public virtual ApplicationUser User { get; set; }
}
마이그레이션을 생성합니다.
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_AccountUsers_Accounts_AccountId",
table: "AccountUsers");
migrationBuilder.DropForeignKey(
name: "FK_AccountUsers_AspNetUsers_ApplicationUserId",
table: "AccountUsers");
migrationBuilder.DropPrimaryKey(
name: "PK_AccountUsers",
table: "AccountUsers");
migrationBuilder.RenameTable(
name: "AccountUsers",
newName: "Staffs");
migrationBuilder.RenameIndex(
name: "IX_AccountUsers_ApplicationUserId",
table: "Staffs",
newName: "IX_Staffs_ApplicationUserId");
migrationBuilder.RenameIndex(
name: "IX_AccountUsers_AccountId",
table: "Staffs",
newName: "IX_Staffs_AccountId");
migrationBuilder.AddPrimaryKey(
name: "PK_Staffs",
table: "Staffs",
column: "Id");
migrationBuilder.AddForeignKey(
name: "FK_Staffs_Accounts_AccountId",
table: "Staffs",
column: "AccountId",
principalTable: "Accounts",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
migrationBuilder.AddForeignKey(
name: "FK_Staffs_AspNetUsers_ApplicationUserId",
table: "Staffs",
column: "ApplicationUserId",
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_Staffs_Accounts_AccountId",
table: "Staffs");
migrationBuilder.DropForeignKey(
name: "FK_Staffs_AspNetUsers_ApplicationUserId",
table: "Staffs");
migrationBuilder.DropPrimaryKey(
name: "PK_Staffs",
table: "Staffs");
migrationBuilder.RenameTable(
name: "Staffs",
newName: "AccountUsers");
migrationBuilder.RenameIndex(
name: "IX_Staffs_ApplicationUserId",
table: "AccountUsers",
newName: "IX_AccountUsers_ApplicationUserId");
migrationBuilder.RenameIndex(
name: "IX_Staffs_AccountId",
table: "AccountUsers",
newName: "IX_AccountUsers_AccountId");
migrationBuilder.AddPrimaryKey(
name: "PK_AccountUsers",
table: "AccountUsers",
column: "Id");
migrationBuilder.AddForeignKey(
name: "FK_AccountUsers_Accounts_AccountId",
table: "AccountUsers",
column: "AccountId",
principalTable: "Accounts",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
migrationBuilder.AddForeignKey(
name: "FK_AccountUsers_AspNetUsers_ApplicationUserId",
table: "AccountUsers",
column: "ApplicationUserId",
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
}
답변
EF Core에서 다음 문을 사용하여 테이블과 열의 이름을 바꿉니다.
테이블 이름 변경 :
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameTable(name: "OldTableName", schema: "dbo", newName: "NewTableName", newSchema: "dbo");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameTable(name: "NewTableName", schema: "dbo", newName: "OldTableName", newSchema: "dbo");
}
열 이름 변경 :
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(name: "OldColumnName", table: "TableName", newName: "NewColumnName", schema: "dbo");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(name: "NewColumnName", table: "TableName", newName: "OldColumnName", schema: "dbo");
}
답변
ef core에서는 마이그레이션 추가 후 생성 된 마이그레이션을 변경할 수 있습니다. 그리고 업데이트 데이터베이스를 수행하십시오. 샘플은 다음과 같습니다.
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(name: "Type", table: "Users", newName: "Discriminator", schema: "dbo");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(name: "Discriminator", table: "Users", newName: "Type", schema: "dbo");
}
답변
방금 EF6에서 똑같이 시도했습니다 (코드 첫 번째 엔티티 이름 바꾸기). 나는 단순히 클래스의 이름을 바꾸고 패키지 관리자 콘솔을 사용하여 마이그레이션을 추가했으며 RenameTable (…)을 사용하는 마이그레이션이 자동으로 생성되었습니다. 나는 엔티티에 대한 유일한 변경이 새 열이나 이름이 변경된 열이 없도록 이름을 바꾸는 것이 었음을 인정해야하므로 이것이 EF6인지 또는 EF가 (항상) 그러한 간단한 마이그레이션을 감지 할 수 있는지 확신 할 수 없습니다.
답변
테이블 이름과 열 이름은의 매핑의 일부로 지정할 수 있습니다 DbContext
. 그러면 마이그레이션에서 수행 할 필요가 없습니다.
public class MyContext : DbContext
{
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Restaurant>()
.HasMany(p => p.Cuisines)
.WithMany(r => r.Restaurants)
.Map(mc =>
{
mc.MapLeftKey("RestaurantId");
mc.MapRightKey("CuisineId");
mc.ToTable("RestaurantCuisines");
});
}
}