Hi @Aidan Waterford,
Welcome to the Microsoft Q&A Platform!
The error indicates a problem with your Blazor app's database connection. Specifically, the SQL Server cannot authenticate the login request for the user account specified in the connection string when the app is running on Azure.
Check the Connection String
Server=tcp:<your-server-name>.database.windows.net,1433;
Initial Catalog=<your-database-name>;
Persist Security Info=False;
User ID=<your-username>;
Password=<your-password>;
MultipleActiveResultSets=False;
Encrypt=True;
TrustServerCertificate=False;
Connection Timeout=30;
Incorrect Authentication Method: The connection string is using an Azure AD login, but the SQL Server may not be configured to accept Azure AD authentication.
Firewall Misconfiguration: Although the firewall is set, ensure that "Allow Azure services and resources to access this server" is enabled in the Azure SQL Server settings.
Mismatched Connection String: The connection string that works locally may not be valid for Azure if it uses Integrated Security or local credentials.
If the answer is helpful, please click "Accept Answer" and kindly upvote it.