您的位置:首页 > 产品设计 > UI/UE

Cannot be serialized to JSON because its IsReference setting is 'True'

2011-02-12 20:41 507 查看
Issue:

{"The type 'XXXXXXXXXX' cannot be serialized to JSON because its IsReference setting is 'True'. The JSON format does not support references because there is no standardized format for representing references. To enable serialization, disable the IsReference setting on the type or an appropriate parent class of the type."}

Solution:

http://blogs.microsoft.co.il/blogs/idof/archive/2008/09/30/serializing-entity-framework-object-to-json.aspx

DataContractJsonSerializer EF objects are marked with IsReference=true and therefore cannot be serialized with DataContractJsonSerializer. Trying to serialize EF objects with that serializer throws the following exception:
"The type 'xxx' cannot be serialized to JSON because its IsReference setting is 'True'. The JSON format does not support references because there is no standardized format for representing references. To enable serialization, disable the IsReference setting on the type or an appropriate parent class of the type." BTW, that message is somehow misleading because you cannot "disable" the IsReference setting because all EF objects inherit from the EntityObject class which is also marked with IsReference=true JavaScriptSerializer According to MS connect, we should be able to use AJAX's JavaScriptSerializer to serialize EF objects, but trying so raises the following exception:
"A circular reference was detected while serializing an object of type 'XXX'." The circular reference exception will be raised when a navigable relation is double-sided (can access both sides of the relation), so the first thing to do is disable one side of the relation. The exception will also be thrown when you use 1:1 relations (or 1:0..1 or any relation causing the creation of an EntityReference type property), in this case the exception will be of type ''System.Data.Metadata.Edm.AssociationType'. The solution to this is to make the serializer ignore the properties of type EntityReference, using an empty implementation of a class deriving from JavaScriptConverter and registering it using the RegisterConverters method of the JavaScriptSerializer object. So to conclude, serializing EF object to JSON is not quite of an easy task. There is, however, another solution to serialize EF objects, using the JSON serializer supplied with Ado.Net Data Services (Astoria), the catch is that the JSON serializer is an internal serializer, which means you'll have to expose the EF as a Data Service, making this solution a bit annoying.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐