Question

I'm using the default MemoryCache, which works fine for my purposes. However the GetValues() method returns IDictionary<string, object>

Is there a quick way to cast this to IDictionary<string, MyType> ?

Était-ce utile?

La solution

Use ToDictionary:

ToDictionary(k => k.Key, k => (MyType)k.Value)

Autres conseils

Do your own GetValues method that call to the original one. For each result, do the cast to the second returned value (the object one) and generate your own casted IDictionary.

This would mean that you can only store objects of type MyType inside this cache. But if this is the case you could have a wrapper method:

public static IDictionary<string, MyType> GetValues(IEnumerable<string> keys)
{
    return MemoryCache.Default.GetValues(keys).ToDictionary(x => x.Key, x => x.Value as MyType);
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top