Estou recebendo um erro ao tentar fazer o Add-Migration no Visual Studio 2022 com .NET6 No Console estou usando o seguinte o comando: Add-Migration Filmes, e recebo o erro conforme a imagem.
O meu Json esta assim:
{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }, "AllowedHosts": "*", "ConnectionStrings": { "FilmeConnection": "server=localhost;database=filmeDb;user=root;password=root" } }
O Adicionar dbContext esta assim: builder.Services.AddDbContext(opts => opts.UseMySQL(builder.Configuration.GetConnectionString("FilmeConnection")));