Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Lazy Loading

0.00/5 (No votes)
26 Aug 2008 1  
Lazy Loading is an object relational pattern which is used to defer the inialization of an object until its needed. The object will not contain all

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

Lazy Loading is an object relational pattern which is used to defer the inialization of an object until its needed. The object will not contain all of the data, but it knows how to get all of them when they are needed.

The object to be lazily loaded is originally set to null, and every request for the object checks for null and creates it "on the fly" before returning it first,

There are four main ways you can implement Lazy Load: lazy initialization, virtual proxy, value holder, and ghost.

This is an example on how to apply lazy Initialization in your class.

public class Order
{
private int _OrderId = 0;
private int OrderId
{
set { _OrderId = value; }
get { return _OrderId; }
}

private Customer _Customer = null;
public Customer Customer
{
get
{
if (_Customer == null)
_Customer = Customer.GetCustomerByOrderId(_OrderId); // Lazy loading the Customer
return _Customer;
}
set { _Customer = value; }
}
}

 In this way, the first access to the Customer property will causes the customer object to be loaded.

Note : It's not always a good practice to use lazy loading, especially if loading the object requires a lot of time and resources, like accessing a webservice. In that case it's better to deep load all the required data in the object.

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here