I am new to EF core and I\'m trying to get it to work with my ASP.NET Core project.
I get the above error in my startup.cs when trying configure the
startup.cs
I had to use the line
services.AddEntityFrameworkSqlite().AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("MovieContext")));
in the ConfigureServices method in the Startup.cs