I have my own Xdata-service
type
TExhLead = class
fields..
end;
TExhLeadList = TList<TexhLead>;
...
[HttpGet] function exhleads:TExhLeadList;
How can I supress the value construct in the output?
The function above returns a list of objects and not an object with a list inside. IMHO the { 'value' : ....} construct is wrong but I can not find the switch for the right output
Is there any way to do so? My consuming API don't expect an extra node.
Best regards
Sven