vote up 8 vote down star
5

I'm attempting to use the following code to serialize an anonymous type to JSON:

var serializer = new DataContractJsonSerializer(thing.GetType());
var ms = new MemoryStream();
serializer.WriteObject(ms, thing);
var json = Encoding.Default.GetString(ms.ToArray());

However, I get the following exception when this is executed:

Type '<>f__AnonymousType1`3[System.Int32,System.Int32,System.Object[]]' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. See the Microsoft .NET Framework documentation for other supported types.

I can't apply attributes to an anonymous type (as far as I know). Is there another way to do this serialization or am I missing something?

flag

49% accept rate

5 Answers

vote up 11 vote down check

Try the JavaScriptSerializer instead of the DataCotnractJsonSerializer

JavaScriptSerializer serializer = new JavaScriptSerializer();
var output = seriaizer.Serialize(your_anon_object);
link|flag
One hitch though. The JavaScriptSerializer has been deprecated. – Biswanath Mar 28 at 17:30
2  
Trackback, it seems it was de-deprecated in SP1. – Biswanath Mar 28 at 21:34
1  
for something so obsolute, it appears to be getting used in many new Microsoft frameworks, including MVC. aspnet.codeplex.com/SourceControl/changeset/… – Nick Berardi Mar 29 at 1:13
vote up 4 vote down

Check this article:

Tip/Trick: Building a ToJSON() Extension Method using .NET 3.5

link|flag
vote up 3 vote down

I would argue that you shouldn't be serializing an anonymous type. I know the temptation here; you want to quickly generate some throw-away types that are just going to be used in a loosely type environment aka Javascript in the browser. Still, I would create an actual type and decorate it as Serializable. Then you can strongly type your web methods. While this doesn't matter one iota for Javascript, it does add some self-documentation to the method. Any reasonably experienced programmer will be able to look at the function signature and say, "Oh, this is type Foo! I know how that should look in JSON."

Having said that, you might try JSON.Net to do the serialization. I have no idea if it will work

link|flag
1  
JSON.Net works just fine. I would argue that you shouldn't :), I think it's pretty legitimate in many cases. – aprilchild Dec 1 '08 at 19:56
After seeing the "throw away" types being used in MVC I can see some compelling uses. I think it is a very handy tool to have in your .Net tool box. – Matthew Whited Jun 7 at 3:21
1  
This is a point I have also softened on, especially in the case of consumption-only types. But if the object is making a return trip to the server, or is used in more than one location, I still believe that creating a type will result in fewer problems. – Jason Jackson Jun 7 at 16:01
vote up 2 vote down

Use the Newtonsoft JSON library.

link|flag
vote up 0 vote down

Assuming you are using this for a web service, you can just apply the following attribute to the class:

[System.Web.Script.Services.ScriptService]

Then the following attribute to each method that should return Json:

[ScriptMethod(ResponseFormat = ResponseFormat.Json)]

And set the return type for the methods to be "object"

link|flag

Your Answer

Get an OpenID
or

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