Lazy loading, Deferred Loading and Eager Loading in Entity framework

前端 未结 3 1652
抹茶落季
抹茶落季 2020-12-09 20:33

What are the differences between these 3 types of loading? Can someone explain with an example? Different resources online use different definitions causing more confusion t

3条回答
  •  春和景丽
    2020-12-09 21:11

    When objects are returned by a query, related objects are not loaded at the same time.

    Instead they are loaded automatically when the navigation property is accessed. Also known as “lazy loading,”

提交回复
热议问题