HistoryRepository.GetAppliedMigrationsAsync(CancellationToken) Method

Definition

Queries the history table for all migrations that have been applied.

public virtual System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Migrations.HistoryRow>> GetAppliedMigrationsAsync (System.Threading.CancellationToken cancellationToken = default);
abstract member GetAppliedMigrationsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Migrations.HistoryRow>>
override this.GetAppliedMigrationsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Migrations.HistoryRow>>
Public Overridable Function GetAppliedMigrationsAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of IReadOnlyList(Of HistoryRow))

Parameters

cancellationToken
CancellationToken

A CancellationToken to observe while waiting for the task to complete.

Returns

A task that represents the asynchronous operation. The task result contains the list of applied migrations, as HistoryRow entities.

Implements

Exceptions

Applies to