Introduction Lazy-loading is a useful design pattern for deferred object loading to the time when it is needed for the first time. It may save some memory, requests to database etc. It is very often used in combination of Object Relational Mapping (ORM), when objects (or object graphs) are mapped into rows in relational database […]

