共用方式為


IMigrator 介面

定義

用來產生 EF Core 移轉腳本或直接移轉資料庫的主要服務。

public interface IMigrator
type IMigrator = interface
Public Interface IMigrator

備註

服務存留期為 Scoped 。 這表示每個 DbContext 實例都會使用此服務自己的實例。 實作可能相依于任何存留期註冊的其他服務。 實作不需要安全線程。

如需詳細資訊和範例 ,請參閱資料庫移轉

方法

GenerateScript(String, String, Boolean)

產生 SQL 腳本,以完整移轉資料庫,或從指定的移轉開始和結束。

GenerateScript(String, String, MigrationsSqlGenerationOptions)

產生 SQL 腳本,以完整移轉資料庫,或從指定的移轉開始和結束。

Migrate(String)

將資料庫移轉至指定的目標移轉,或最多存在 IMigrationsAssembly 的最新移轉。

MigrateAsync(String, CancellationToken)

將資料庫移轉至指定的目標移轉,或最多存在 IMigrationsAssembly 的最新移轉。

適用於