EntityFramework WCF issue
- by Andres Blanco
Right now i'm doing some tests involving entityFramework and WCF. As I understand, the EntityObjects generated are DataContracts and so, they can be serialized to the client.
In my example I have a "Country" entity wich has 1 "Currency" as a property, when I get a Country and try to send it to the client, it throws an exception saying the data cant be written.
But, the thing is, if I Get a Currency (which has a collection of Countries) and dont load its countries, it does work. The client gets all the entities.
So, as a summary:
- I have an entity with another entity as a property and cant be serialized.
- I have another entity with an empty list of properties and it is successfully serialized.
Any ideas on how to make it work?