I have html fragments in a partial view that uses the output cache like so
<cache vary-by="@Util.SomeID" expires-after="@TimeSpan.FromHours(1)">
<div>some content</div>
</cache>
In the event that I need the content to be updated before the expiration of the cache, how do I go about busting the cache for that particular fragment (or the entire cache, if necessary) ?
I'm using ASP.NET 5 and MVC 6..
Thanks!