I am using WCF for my project and i need to transit some entities through it.
The thing is that some of them have lists inside, with an enormeous ammount of items, and so forth, i cannot pass it through WCF, given its size.
How can I, through code, not load a given property from the database, but load all the rest?

IList<T>interface for lists. – John Saunders Jul 30 at 0:01