Please add feature for requesting only certain fields from Aurelius CRUD Endpoints with XDataWebDataSet similar to $select* query option?
It's already possible, using TXDataWebDataset.QueryString
property. For example:
XDataWebDataset1.Close;
XDataWebDataset1.QueryString := '$select=Name,Artist,Artist/Name&$filter=Id gt 2&$expand=Artist';
XDataWebDataset1.EntitySetName := 'Album';
XDataWebDataset1.Load;
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.