Serialize Entity Framework objects into JSON - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T10:26:46Zhttp://stackoverflow.com/feeds/question/657939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/657939/serialize-entity-framework-objects-into-json2Serialize Entity Framework objects into JSONProgram.X2009-03-18T11:53:49Z2009-03-18T15:44:52Z
<p>It seems that serializing Entity Framework objects into JSON is not possible using either WCF's native DataContractJsonSerializer or ASP.NET's native JavaScript Jersializer. This is due to the reference counting issues both serializers reject. I have also tried JSON.Net, which also fails specifically on a Reference Counting issue.</p>
<p>My objects are Entity Framework objects, which are overloaded to perform additional business functionality (eg. authentication, etc.) and I do not want to decorate these classes with platform-specific attributes, etc. as I want to present a platform-agnostic API.</p>
<p>I've actually blogged about the individual steps I went though at <a href="http://bloggingabout.net/blogs/program.x/archive/2009/03/18/wcf-json-serialization-woes.aspx" rel="nofollow">http://bloggingabout.net/blogs/program.x/archive/2009/03/18/wcf-json-serialization-woes.aspx</a></p>
<p>Have I missed something obvious?</p>
http://stackoverflow.com/questions/657939/serialize-entity-framework-objects-into-json/658013#6580132Answer by John Saunders for Serialize Entity Framework objects into JSONJohn Saunders2009-03-18T12:16:06Z2009-03-18T12:16:06Z<p>Microsoft made an error in the way they made EF objects into data contracts. They included the base classes, and the back links.</p>
<p>Your best bet will be to create equivalent Data Transfer Object classes for each of the entities you want to return. These would include only the data, not the behavior, and not the EF-specific parts of an entity. You would also create methods to translate to and from your DTO classes.</p>
<p>Your services would then return the Data Transfer Objects.</p>
http://stackoverflow.com/questions/657939/serialize-entity-framework-objects-into-json/658056#6580565Answer by Craig Stuntz for Serialize Entity Framework objects into JSONCraig Stuntz2009-03-18T12:30:06Z2009-03-18T12:30:06Z<p>The way I do this is by projecting the data I want to serialize into an anonymous type and serializing that. This ensures that only the information I actually want in the JSON is serialized, and I don't inadvertently serialize something further down the object graph. It looks like this:</p>
<pre><code>var records = from entity in context.Entities
select new
{
Prop1 = entity.Prop1,
Prop2 = entity.Prop2,
ChildProp = entity.Child.Prop
}
return Json(records);
</code></pre>
<p>I find anonymous types just about ideal for this. The JSON, obviously, doesn't care what type was used to produce it. And anonymous types give you complete flexibility as to what properties and structure you put into the JSON.</p>
http://stackoverflow.com/questions/657939/serialize-entity-framework-objects-into-json/658856#6588562Answer by Program.X for Serialize Entity Framework objects into JSONProgram.X2009-03-18T15:44:52Z2009-03-18T15:44:52Z<p>Don't know if this is appropriate. I have resolved my issue, in a roundabout way. Thanks very much for you guys' help, it was most appreciated and crucial.</p>
<p>I've blogged it at:</p>
<p><a href="http://bloggingabout.net/blogs/program.x/archive/2009/03/18/wcf-json-serialization-woes.aspx" rel="nofollow">http://bloggingabout.net/blogs/program.x/archive/2009/03/18/wcf-json-serialization-woes.aspx</a></p>