WCF: Exposed Object Model - stuck in a loop

Posted by Mark on Stack Overflow See other posts from Stack Overflow or by Mark
Published on 2010-02-08T07:08:38Z Indexed on 2010/03/24 12:03 UTC
Read the original article Hit count: 234

Filed under:
|

Hi

I'm working on a pretty big WSSF project. I have a normal object model in the business layer. Eg a customer has an orders collection property, when this is accessed then it loads from the data layer (lazy loading). An order has a productCollection property etc etc..

Now the bit I'm finding tricky is exposing this via WCF. I want to export a collection of orders. The client app will also need information about the customers. Using the WSSF data contract designer I have set it up so that customers have a property called "order collection". This is fine if you have a customer object and would like to look at the orders but if you have an order object there is no customer property so it doesn't work going up the hierarchy.

I've tried adding a customer property to the orders object but then the code gets stuck in a loop when it loads the data contracts up. This is because it doesn't load on demand like in the business layer. I need to load all properties up before the objects can be sent out via WCF. It ends up loading an order, then the customer for that order, then the orders for that customer, then the customer for that order etc etc...

I'm sure I've got all this wrong. Help!!

© Stack Overflow or respective owner

Related posts about wssf

Related posts about wcf