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> ?

有帮助吗?

解决方案

Use ToDictionary:

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

其他提示

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);
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top