i have tried to implement concepts of lazy and Eager loading in .Net Entity Framework. I have two tables Products & Categories, a category can have multiple products. Please check attached screenshot.
- Default behavior [Lazy Loading true]
In Lazy load it always load Categories and related products (whether we use include or not) . which is not correct. Please clarify me for this confusion.


