I have a POCO class that is being sent to the browser as a JSON string in .NET 3.5 sp1. I am just using the default JSON serialization and I have some fields that I want to ignore. I want to put an attribute similar to [System.Xml.Serialization.XmlIgnore] on them so that they are not serialized.

link|improve this question

64% accept rate
feedback

2 Answers

I use the ScriptIgnore attribute on my model like so:

public class Item
{
	[ScriptIgnore]
	public Item ParentItem { get; set; }
}

In this particular scenario I was getting a circular reference error from the Json serializer, so I simply ignored it. I was asking a similar question here on SO when I was turned on to the difference between a Model and ViewModel.

link|improve this answer
what if its not POCO but a generated EntityModel, I do not want to edit the generated code, is there a workaround to add ScriptIgnore attribute to the generated entity model. – hazimdikenli Nov 11 '10 at 10:09
@hazimdikenli you might have to utilize partial class for this. – Sutikshan Dubey Aug 5 '11 at 16:18
1  
Don't forget to add a reference to "System.Web.Extensions" for this to work – Levitikon Sep 14 '11 at 23:34
This helped me stop my toJson(Model) bringing back some unwanted fields,, but ideally with an API, you will need to make an new Area, with a New Model and controller to avoid cross annotations.. but im too lazy. Thanks +1 – ppumkin Jan 26 at 16:35
feedback

[ScriptIgnore] is your huckaberry.

link|improve this answer
+1 for Tombstone reference. – jrummell Sep 11 '09 at 15:40
feedback

Your Answer

 
or
required, but never shown

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