You are not logged in.
Pages: 1
I'm serialize record to json using RecordSaveJSON, and I need to ignore a field.
Ex:
TMyRecord = record
id: string;
name: string;
last_name: string;
end;
I need to ignore the id field when converting to json -> { "name":"john", "last_name":"wick"}
Pages: 1