`LazyList<...>` vs `System.Lazy<List<...>>` in ASP.NET MVC 2?
- by FreshCode
In Rob Conery's Storefront series, Rob makes extensive use of the LazyList<..> construct to pull data from IQueryables.
How does this differ from the System.Lazy<...> construct now available in .NET 4.0? (perhaps earlier)