How do I reset/update/refresh a PartialViewResult which is cached (OutputCache) in ASP.NET MVC?
I want to perform this action through a ActionLink.
I've used this code in a ActionResult:
OutputCacheAttribute.ChildActionCache = new MemoryCache("CachedTable");
but it resets all my cached partial views.