In my ASP.NET web site I persist objects retrieved from DB for some time and make sure that the only single instance of object is created per DB record.
I also use [InstanceCache] to cache calculated value for one of business objects, object is kept in cache for the duration of user session.
Today, though, I came across the use-case when I would like to invalidate cached value.
How can I do this for properties that are cached using [InstanceCache]?
Please advise.
Thank you.