Is there a way to change how the DataContractJsonSerializer serializes dates?
Currently, it'll convert a date to something like:
{
"date": "/Date(1260597600000-0600)/"
}
I would rather have it serialize as just the milliseconds since utc 1970. That way, other languages can easily work with the json data.