I am trying to upgrade our current .Net Core application from 1.1 to 2.0 and am getting this runtime error: \"The DbContext of type \'CoreContext\' cannot be pooled because
Try to use AddDbContext instead of AddDbContextPool. This helped me in the same situation.
services.AddDbContext(options => options.UseSqlServer(absConnectionString));