I'm trying to implement a WCF service that will return a Model that I also use in the Entity Framework. When the model has a virtual
property of navigation for association with another model WCF can not parse the object and ends up returning an error saying that the connection was closed.
When I remove the reference (navigation property) the parse is done successfully and the object is returned.
What is the right way to do this? Can not return a Model directly? How do I deal with these membership properties in WCF?