我正在使用 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);
}