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.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Since you are projecting you are working with a new list, not the original one, LINQ is not the right tool for mutation - also you need the key of the item to remove, not the value.

This should work:

var itemsToRemove = MemoryCache.Default
                               .Where( x=> x.Value is CachedObjectType &&
                                          (x.Value as CachedObjectType).ZipCode == "11111")
                               .Select(x=> x.Key)
foreach(var key in itemsToRemove)
    MemoryCache.Default.Remove(key);
link|improve this answer
Yep - fixed, also didn't check for the ZipCode - both edited in – BrokenGlass May 3 '11 at 21:13
This works fine but any idea why MemoryCache.Default doesnt have RemoveAll() method? It does have other LINQ methods though. – Asdfg May 3 '11 at 21:22
@Asdfg: RemoveAll() is a method defined on List<T> - MemoryCache only implements IEnumerable. – BrokenGlass May 3 '11 at 21:27
Thanks for the explanation. Really appreciate your help. – Asdfg May 3 '11 at 21:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.