Lazy
loading means not creating an object until the first time it is accessed.This technique is most useful when you have large
hierarchies of objects (such as a product catalog). You can lazy-load
subordinate objects as you navigate down the hierarchy, and thereby only create
objects when you need them.