InterviewSolution
| 1. |
What Is Way Of Loading Data In Ef (entity Framework)? |
|
Answer» Lazy Loading: PROCESS of loading the RELATED objects until it is required. Eager Loading: Process of loading the related objects is loaded automatically with its parent object. Explicit Loading: Explicitly loading TAKES place when you have disabled Lazy loading, and you still want to lazy loading. For this, we have to call the LOAD method on the related entities. Lazy Loading: Process of loading the related objects until it is required. Eager Loading: Process of loading the related objects is loaded automatically with its parent object. Explicit Loading: Explicitly loading takes place when you have disabled Lazy loading, and you still want to lazy loading. For this, we have to call the load method on the related entities. |
|