【发布时间】:2012-04-05 16:02:09
【问题描述】:
我正在使用 Redis,但 StoreAll 不起作用。
在 mscorlib.dll 中发生了“System.StackOverflowException”类型的未处理异常
var newOrders = (from i in DB.Produtoes.OrderByDescending(d => d.idProduto) select i);
using (var produtosRedis = redisClient.GetTypedClient<Produto>())
{
produtosRedis.StoreAll(newOrders);
}
【问题讨论】: