Hi,
Recently I develop a n-Tier application using EF4 as data access. I have a problem with enabled LazyLoading in CSDL.
When I run the application and retrieve an entity, the child list is loaded by EF4 but when I re-run the application and retreive a child and then write code like 'childEntity.theParent.Name', theParent not loaded so I got NullPointerException.
Is LazyLoading unidirectional from parent to child? if it's bidirectional, how could I enable it to load theParent?
Best Regard