I am trying to setup a new localdb and update using EF Core. I can connect to the server fine and create databases, however it has a blue question mark icon instead of a green checkmark.
Attempting to run update-database also returns an error that seems to be from the same issue
This is the connection string I am using:services.AddDbContext<ScDbContext>(
options => options.UseSqlServer("Server=(localdb)\\mssqllocaldb; Database=mydb; Trusted_Connection=True;"));