No meu caso o migration não funcionava pois o projeto web possuía 2 erros:
Amobos no projeto web (razor):
- CadastrarArtista.Razor: onde comentei o: -> for="@context"
- MainLayout.razor: onde comentei 'Palette'
// 1)
...
<ButtonTemplate>
<MudButton HtmlTag="label"
Variant="Variant.Filled"
Color="Color.Primary"
StartIcon="@Icons.Material.Filled.PhotoCamera"
@* for="@context" *@
>
Foto de Perfil
</MudButton>
</ButtonTemplate>
...
// 2)
...
@code {
private MudTheme currentTheme = new MudTheme()
{
// Palette = ScreendsoundPallete.CreatePallete
};
}
após comentar a migration funcionou.