Aurelius dataset

Hello,

I attended the Webinar on Aurelius 5 - very good - thank you.
I am new to Aurelius so trying to learn fast.

I am having trouble getting my classes to be seen by Aurelius dataset component. How is this done?
I have the FD connection OK
I have the Aurelius Connection connected to the FD connection
I have my classes.

I am missing something stupid I know.

Thank you for your assistance.

David

Hi,

Aurelius Dataset provide some SetSource*** methods to bind with Lists, Objects, and so on. Eg.

var
  People: TList<TPerson>;
begin
  People := Manager.Find<TPerson>.List;
  AureliusDataset1.SetSourceList(People);

For more info have a look here:

HTH

1 Like

Thank you :-)

2 Likes