Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 589 Bytes

README.md

File metadata and controls

32 lines (27 loc) · 589 Bytes

Why doesn't lazy loading work?

##Before Clearing LazyLoadingEnabled=True:

-------
ParticipantList 'I'm a P List' Id=1
        1: [email protected]
        2: [email protected]
-------

Clearing Change Tracker
via LazyLoading LazyLoadingEnabled=True
-------
ParticipantList 'I'm a P List' Id=1
:-(
-------

After Also selecting emails from DB LazyLoadingEnabled=True
-------
ParticipantList 'I'm a P List' Id=1
:-(
-------

Clearing Change Tracker
via Include LazyLoadingEnabled=True
-------
ParticipantList 'I'm a P List' Id=1
        1: [email protected]
        2: [email protected]
-------