My LINQ query result cache is probably just what you’re looking for.
var q = from c in context.Customers
where c.City == "London"
select new { c.Name, c.Phone };
var result = q.Take(10).FromCache();
Pete.
My LINQ query result cache is probably just what you’re looking for.
var q = from c in context.Customers
where c.City == "London"
select new { c.Name, c.Phone };
var result = q.Take(10).FromCache();
Pete.