Class MigrationRunResult
Outcome of a migrate or rollback pass.
public record MigrationRunResult : IEquatable<MigrationRunResult>
- Inheritance
-
MigrationRunResult
- Implements
- Inherited Members
Constructors
MigrationRunResult(IReadOnlyList<string>, int)
Outcome of a migrate or rollback pass.
public MigrationRunResult(IReadOnlyList<string> MigrationIds, int Count)
Parameters
MigrationIdsIReadOnlyList<string>Countint
Properties
Count
public int Count { get; init; }
Property Value
MigrationIds
public IReadOnlyList<string> MigrationIds { get; init; }