I'm returning JSON via WCF using ResponseFormat = WebMessageFormat.Json from an SQL backend accessed with entity framework.
My query is returning
{
"DateInserted": "/Date(1435640400000-0500)/",
"DateUpdated": "/Date(1454699734160-0600)/",
where DateInserted in my database is 2015-06-30 00:00:00.000 and DateUpdated in my database is 2016-02-05 13:15:34.160
but I haven't been able to find any information about what the numbers the Date() string represent, nor where the datetime is being converted to that string representation, so any information you may be able to share may be helpful to me.