ข้ามไปยังเนื้อหา

Interface IDatabaseMigrationCatalog

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.Data
Assembly: Cephalon.Abstractions.dll

Exposes the active runtime database-migration catalog for the current Cephalon host.

public interface IDatabaseMigrationCatalog

Gets every migration target visible to the current runtime.

IReadOnlyList<DatabaseMigrationDescriptor> DatabaseMigrations { get; }

IReadOnlyList<DatabaseMigrationDescriptor>

Gets one migration target by its logical identifier.

DatabaseMigrationDescriptor? GetById(string databaseMigrationId)

databaseMigrationId string

The logical migration-target identifier.

DatabaseMigrationDescriptor?

The matching migration-target descriptor, or null when none exists.