Delphi introduced a new JSON marshaler in unit REST.JsonReflect
, a similar JSON marshaler exists in unit Data.DBXJSONReflect
. Both units introduce TJSONConverters
to create TJSONMarshal
and TJSONUnMarshal
instances.
what are the differences between
REST.JsonReflect.TJSONConverters
andData.DBXJSONReflect.TJSONConverters
?will
REST.JsonReflect.TJSONConverters
replaceData.DBXJSONReflect.TJSONConverters
?are there any situations where I should use
Data.DBXJSONReflect.TJSONConverters
instead ofREST.JsonReflect.TJSONConverters
?