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:
- Receive Query
- Load includes necessary to answer request
- Execute Query
- Create temporary IEnumerable
- Iterate 4) and load all items again, this time with the include-path requested from the client-app only
- return entities via WCF
I would like to do this:
- Receive Query
- Load all includes (infrastructure plus client-requested)
- Execute Query
- Unload "Infrastructure" includes
return entities via WCF
What is the proper way to do this?
Thanks, Armin