The type or namespace name 'StoreContext' could not be found (are you missing a using directive or an assembly reference?) [K:\ShoppingNetwork\API\API.csproj] code example
Example: The type or namespace name 'MovieContext' could not be found (are you missing a using directive or an assembly reference?)
if (Environment.IsDevelopment())
{
services.AddDbContext<RazorPagesMovieContext>(options =>
options.UseSqlite(
Configuration.GetConnectionString("MovieContext")));
}
else
{
services.AddDbContext<RazorPagesMovieContext>(options =>
options.UseSqlServer(
Configuration.GetConnectionString("MovieContext")));
}