Is there a way i can remove objects from MemoryCache.Default using LINQ query like this:
MemoryCache.Default.Select(c => c.Value).OfType<CachedObjectType>().ToList().RemoveAll(k => k.ZipCode == "11111");
This doesnt remove the objects from the MemoryCache.Default instance.