I am using Webmatrix.data\'s Database entity to create a database connection, however it doesnt like my connection string. I am running it from MVC ASP.net.
Ive tri
I ran into the error in one of the IdentityServer quickstarts.
Had to replace
services.AddDbContext(options =>
options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")));
With
services.AddDbContext(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
Using
Microsoft.EntityFrameworkCore.SqlServer
Because obviously my DB was a Microsoft SQL Server and not SQLite.