Similar articles
DotNetShoutout - Latest published stories
Lazy Initializer : C# 4.0
In .NET 4.0 a new set of classes are introduced to defer the creation of expensive objects when not in use. In this article, I have discussed how you can use Lazy classes to ensure that every object i...
DotNetShoutout - Latest published stories
Laziness in C# 4.0 – Lazy « Sankarsan’s Journal
“Lazy Instantiation” defers creation of an object till the time it is actually accessed.The process of object creation is always expensive as it involves allocation of memory on the heap.Now C# 4.0 in...
ASP.NET Weblogs
Lazy loading in Entity framework
What is lazy loading object? As per Martin Fowler, "An object that doesn't contain all of the data you need but knows how to get it." Here Bruno explains clearly how lazy loading works in terms of&nbs...