AureliusDataSet and XData

Hi,


Would it be possible to pass the result of a query from an xDataClient to an AureliusDataSet?

var
xCar : TXDataClient;
Car : TList<TCar>;
begin
xCar  := TXDataClient.Create;
        xCar.URI := 'http://127.0.0.1:2001/tms/xdata';
Car := xCar.List<TCar>;

// the question 
AureliusDataSet1 := Car;   // Could this be done? as? 
end;

Yes, just use SetSourceList:


AureliusDataset1.SetSourceList(Car);