Is there anyway to change the default JSON serialization/deserialization of DateTime in WCF?
Currently, DateTime are serialized into the /Date(1372252162657+0
/Date(1372252162657+0
you can use this workaround, In your json object definition
[IgnoreDataMember] public DateTime dateObject; public string dateCustomSerialize { get { //Custom get } set { //Custom set } }
In assessor place your custom format serialisation