Export from DataModeler

Hi, when exporting to Aurelius classes from DataModeler I see that Options.Generate Dictionary is checked. Can you provide an example of what this dictionary is used for in Aurelius?


Thanks.
Thom

That dictionary is just a list of constants so in queries, for example, instead of using


TLinq.Eq('Name', 'John');

you use

TLink.Eq(Dict.Customer.Name, 'John');

Hi, Wagner
  I believe that should be done as follows
  TLink.Eq(Dict.Customer.Name.AssociationName, 'John');
  right?
Thanks



Actually it's 

TLink.Eq(Dict.Customer.Name.PropName, 'John');
since it's an scalar property, not an association

rigth, thanks