Posts Tagged

data loading strategies

Entity framework strategies when loading data

There are several types of loading data using Entity Framework. Those are: Lazy Loading Eager Loading Explicit Loading You will also come across one problem when using one of EF strategies.That is N+1 problem. But more on that later. Let’s talk about types of loading in EF! Lazy loading It’s used to retrieve data which…

Read More