Say I have an entity that looks as follows
public Order OrderEntity
{
EntityRef<Customer> CustomerEntity;
EntitySet<OrderDetail> OrderDetailEntity;
...
...
}
When I retrieve an OrderEntity, and convert it say to a List, L2S, will also retrieve the entity in CustomerEntity and all the entities in OrderDetailEntity (plus all their child entities etc.). Often times we do not want this behavior. How to tell L2S not to do this?
Thanks - Randy