Working with Aurelius

Hi,

One more question. :slight_smile:

Any hint how can I convert the following delphi code to Aurelius script:

var
Results: TObjectList;
...
Results := Manager.Find
.Select(TProjections.ProjectionList
.Add(TProjections.Count('ID').As_('CantLicencias'))
.Add(TProjections.Sum('VALOR').As_('ValorLicencias')))
.Add(TExpression.Eq('ID_USUARIO', AIdUsuario))
.Add(TExpression.Eq('SITUACION', 'A'))
.ListValues;

Thanks in advace,

Omar Zelaya