If I create a new instance of the orders entity, it will have an OrderDetailsCollection field, which when filled, is a collection of OrderDetail entities.
If some other code has fetched an OrderDetailsCollection into variable tmpOrderDetails can I set the NewOrder.OrderDetailsCollection = tmpOrderDetails.
Entity.EntityCollection is read only, so I know I cannot set it in this fashion. What would be the best approach to setting the value of Entity.EntityCollection?