I am new to webpage development, and trying to connect my ASP.NET Core MVC code to an existing SQL Server database, using SQL Server authentication. Right now it will only take my computer identification, which of course gets rejected by the SQL Server database. Can anyone tell me how I am supposed to do this?
Details:
Programing is done in Visual Studio 2019, with ASP.NET Core, Entity Framework. All software is up to date.
I followed this tutorial exactly: https://learn.microsoft.com/en-us/ef/core/get-started/aspnetcore/existing-db but it doesn't include SQL Server authentication.
I have my SQL Server login information, and it does allow me to manually connect using "Tools -> Connect to Database". I can see my database and navigate through it, but cannot connect to migrate the data over to my MVC files.
I did successfully complete the entire Microsoft ASP.NET MVC tutorial wherein you create a movies database and use that for an example webpage. The difficulty comes when connecting to an existing database.