I'm using EF 6.1, Database First. I have Lazy Loading disabled.
If I load an entity without Eager loading its Collection Navigation Properties, would I ever have to worry that these navigation properties were not properly initialized? Should I be able to use entity.collectionnavigationproperty.Add(new entity) without worrying about initializing the collection navigation property first?