Suppose I have an Entity Order with OrderDetails as child preperty.
I enable lazyloading like this:
_context.ContextOptions.LazyLoadingEnabled = true;
I Can feed a view with a method like this:
Order.GetAll()
And navigate by the order details automatically without getting the wirerd "Object reference not set to an instance of an object" error??