Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a set of linq to sql classes and serialized them into JSON using the .NET JavaScriptSerializer.

However, as soon as I add record onto a relating table, serialization throws a "Circular reference exception". Aaarggh!

It's described in detail here.

I have a few options

  • Convert the linq to sql class to a class with no relationships thus avoiding the circular reference
  • snip the circular reference by nulling associations - i don't consider this to be a real option
  • Use ScriptIgnoreAttribute (somehow). I couldn't easily apply this because the properties are in generated classes and LINQ to SQL doesn't automatically honor buddy classes
  • Use JSON.NET and somehow use attributes + buddy classes to stop the serializer trying to walk across relationships.

Has anyone else encountered this? I would really prefer the last option if possible but I don't know how to do this.

Any help is greatly appreciated

share|improve this question

2 Answers

up vote 7 down vote accepted

The latest version of Json.NET supports serializing circular relationships. Check out Preserving Object References in the help.

share|improve this answer
1  
Wrote a blog post detailing the setup: johnnycode.com/blog/2012/04/10/… – John Bubriski Apr 11 '12 at 13:16

Additional link for accepted answer

Json.NET Help, Preserving Object References (with example)

It seems it works fine with LINQ to SQL

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.