I'm following this guide building a new core version of my current mvc 5 website. I have an existing sql database hosted on azure and I want to build the project database first. I followed the instructions but on the "reverse engineer you model" part I keep getting an error:
System.AggregateException: One or more errors occurred. (Login failed for user 'removed'.) ---> System.Data.SqlClient.SqlException: Login failed for user 'removed'.
The username and password are correct and working on the current project. This is the connection string:
Scaffold-DbContext "Server=tcp:removed.database.windows.net,1433;
Data Source=removed.database.windows.net;Initial Catalog=removedCatalog;
Persist Security Info=False;User ID=removedId@removed;Password=removedPass;
Pooling=False;MultipleActiveResultSets=False;Encrypt=True;
TrustServerCertificate=False;Connection Timeout=30;"
Microsoft.EntityFrameworkCore.SqlServer
Any insight to what am I missing here?