I have been deploying my web app through Azure. I do not get any errors when deploying/building the app. The error occurs when trying to log into an account on the site. I have also created a default pre-built http://asp.net web app that gets created with the start of a new project, and deployed that. That app also gets the same error. At first, I thought it was something I was doing, but then I saw the same error on the pre-built app. I haven't had this problem before starting my last project, and now it happens on every project I create. The error I keep receiving is below.
Note: Something that might be a contributing factor is I am on a new computer as of recent. My last computer never had this issue, but my new computer does. I'm not able to try it on my last computer as it doesn't work anymore.
Here is the default connection string that is auto generated upon creation of a web app. It is in relation to a database that tracks user accounts/roles/etc. when the option for individual user accounts is selected at creation:
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-OrokinNetworkRebuild-20210114121722.mdf;Initial Catalog=aspnet-OrokinNetworkRebuild-20210114121722;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>