Migration.Down(MigrationBuilder) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建置將移轉資料庫「關閉」的作業。
protected virtual void Down (Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder migrationBuilder);
abstract member Down : Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder -> unit
override this.Down : Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder -> unit
Protected Overridable Sub Down (migrationBuilder As MigrationBuilder)
參數
- migrationBuilder
- MigrationBuilder
MigrationBuilder將建置作業的 。
備註
也就是說,建置作業,以從此移轉所留下的狀態取得資料庫,使其回到套用此移轉之前的狀態。
如果同時支援 'up' 和 'down' 移轉,則必須在繼承自 Migration 的每個類別中覆寫這個方法。 如果未覆寫,則呼叫它將會擲回,而且無法以「向下」方向移轉。
如需詳細資訊和範例 ,請參閱資料庫移轉 。