Context: Repository-pattern, WCF, WPF/SL

In my Repository of self-tracking Entities i need to explicitly load some related properties in order to correctly process the query. Those are not the includes requested by the client and i would like to get rid of them in order to keep network traffic resonable. My solution so far is this:

  1. Receive Query
  2. Load includes necessary to answer request
  3. Execute Query
  4. Create temporary IEnumerable
  5. Iterate 4) and load all items again, this time with the include-path requested from the client-app only
  6. return entities via WCF

I would like to do this:

  1. Receive Query
  2. Load all includes (infrastructure plus client-requested)
  3. Execute Query
  4. Unload "Infrastructure" includes
  5. return entities via WCF

    What is the proper way to do this?

Thanks, Armin

link|improve this question
Maybe you can load just required graph of objects and then get additinal Entities/Collections. One more solutions is just to use select extension to cut includes in object graph. – Danil Feb 23 '11 at 5:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.