Interface INeosMigrationHistory
Provides the functionalities of a database migration history.
public interface INeosMigrationHistory : IEquatable<INeosMigrationHistory>
- Inherited Members
Properties
ExecutionTime
Gets or sets the execution time.
DateTime ExecutionTime { get; set; }
Property Value
MigrationId
Gets or sets the migration identifier.
int MigrationId { get; set; }
Property Value
ProductVersion
Gets or sets the product version.
string ProductVersion { get; set; }
Property Value
Report
Gets or sets the report.
IMigrationReport? Report { get; set; }
Property Value
Status
Gets or sets the status.
MigrationStatus Status { get; set; }
Property Value
UserId
Gets or sets the user identifier.
string? UserId { get; set; }
Property Value
Methods
NewReport()
Returns a new report.
IMigrationReport NewReport()
Returns
- IMigrationReport
A new IMigrationReport object.