Hi there
Is it possible to serialize an Aurelius DataSet? This code below works?
function TBsItensConferenciaCegaLocal.ConferirColeta: Integer;
var
wproxy: TDaoLvEntradasClient;
wResult: TFDJsonDataSets;
Serializer: TDataSnapJsonSerializer;
JsonValue: TJsonValue;
begin
Serializer := TDataSnapJsonSerializer.Create;
wproxy:=TDaoLvEntradasClient.Create(dm.GetConnection);
try
// this code works?
wproxy.ConferirColeta(Serializer.ToJson(AureliusDataSet));
//
finally
wproxy.Free;
Serializer.Free;
end;
end;