I'm taking my first stab at Asp.Net Web API and MVC to retrieve JSON results. When I query the controller, I receive the following JSON set:
[{"date":"2013-05-01T10:00:00","value":1445.95},{"date":"2013-05-01T10:05:00","value":1427.42}]
However, these results include name:value pairs. I would prefer to receive an ordered results array (with no names):
[{"2013-05-01T10:00:00",1445.95},{"2013-05-01T10:05:00",1427.42}]
I think I read that this is commonly handled after retrieving the JSON object. In this case though, I'm trying to match the output format of another site's existing REST interface. Any suggestions on how to achieve this output?