- 12
- Wed
Eager Loading vs Lazy Loading in .NET Core.
Lazy loading is a process of deferring initialization of object to the point till which it is really needed. It is mostly used in web design and can improve page loading time if correctly used. Basic Lazy Inialization //Widget Class public class Widget { private int _widgetId; public Widget() { } public Widget(int id) { […]