In ASP.NET MVC 5 I often invalidated request cache items with code like this in a controller
Response.RemoveOutputCacheItem("/Client/Photo/1");
The RemoveOutputCacheItem option appears to be removed in ASP.NET Core. What is the alternative?
In ASP.NET MVC 5 I often invalidated request cache items with code like this in a controller
Response.RemoveOutputCacheItem("/Client/Photo/1");
The RemoveOutputCacheItem option appears to be removed in ASP.NET Core. What is the alternative?