I've seen in example of DeepLoad in this forum that used code like this:
DataRepository.EmployeesProvider.DeepLoad(emp,true,DeepLoadType.IncludeChildren, new Type[] {typeof(OrdersCollection),typeof(OrderDetailsCollection)});
Notice the OrdersCollection. I don't have any such types in my output. Any list of related records is always a generic TList<>. I notice that the template has a CollectionFormat property that makes me think it might generate an OrdersCollection in some scenario.
So instead, when I do a DeepLoad, I just use typeof( TList<Orders> ) and it seems to work fine.
Are these custom collections an old feature that has been removed? Or might it need to be enabled in some way?