Using SS 5.4.1 I I have the following config in my AppHost:
JsConfig<DateTime>.SerializeFn = time => new DateTime(time.Ticks, DateTimeKind.Local).ToString("o");
JsConfig<DateTime?>.SerializeFn =
time => time != null ? new DateTime(time.Value.Ticks, DateTimeKind.Local).ToString("o") : null;
JsConfig.DateHandler = DateHandler.ISO8601;
When the value to output is a DateTime.MinValue the field is suppressed and not serialised. Is there a way to force DateTime.MinValue to be seralised usng JSON. They do get seralised correctly using SOAP.