On
May 2, 2023 at 9:20 am Vict Man posted
My appsetting.json looks like this.
“ConnectionStrings”: {
“DefaultConnection”: “Server=(localdb)\MSSQLLocalDB;Database=QuickApp;Trusted_Connection=True;MultipleActiveResultSets=true”
},
The project builds successfully but I can’t see the database and any tables in MySQL Server Management Studio.
Can you help me, please?
The ConnectionString you specified points to an SQL Local Database and not a “MySQL” server.
You can connect to this using the “Microsoft SQL Server Management Studio” or any MS SQL database management tool of your choice using (localdb)\MSSQLLocalDB
as the server name.