If anyone is using SQL and they have meta tags there and still the error is shown, this happens because of your connection from .net to SQL.
In you appsettings.json update your connection string to have: Persist Security Info=True
. So your connection string should look like this:
"DefaultConnection": "Server=[[server]];Initial Catalog=[[db]];Persist Security Info=True;User ID=[[user]];Password=[[pass]];MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"