I'm currently developing an SPA webapplication with BreezeJS. This is all working fine, but I have this question. In my entity I have a table which has a type DateTime, to store the creationdate created with the Entity Framework. This all goes fine but when I fetch the data from the server via Breeze (Server-> to -> client) I get this back in my javascript: Wed May 8 16:23:32 UTC+0200 2013
But via Fiddler2 I see it comes in likes this in my JSON: Created=2013-05-08T16:23:32.038+02:00
Why does BreezeJS add the day name to it? Anyone now where I can get the raw value so I can format the date?
Thanks in advance!