I have just started a new .net core project and created my first migration and updated the database locally.
How can I view the table?
In my previous ASP.NET MVC project, I could connect to .\SQLExpress in Visual Studio and the database would open up.
This is my connection string
"DefaultConn": "Server=.\\SQLEXPRESS;Database=ManagementStudio-7661DEE4-C53F-4E49-B140-2AFAA2C85927;Trusted_Connection=True;MultipleActiveResultSets=true"
How can I also convert this into a username password thing?
Sorry, I'm new to .net core
EDIT: I can confirm that the db and tables were created. When I run update-database again, I get errors that say they already exist.