RE: is there a way to select first Only in data entity?
Hi Andre,
- Main DataSource is table1 outer join table2 outer join table 3
- table 3 is the table with the description field and other 3 fields
- table2 relation with table1 (table1.Field1 = table2.Field1) // unique index of table 2 is Field1 + Fieldx
- table3 relation with table2 ( table3.Fieldx = table2.Fieldx)
- Entity key is: Id1,Id2,RecId ( all those are taken from table1) i know recId would have been enough but when i first put the entity key i thought they are enough then i ended up with RecId and left the other fields
- only for export (read), so i think to make the export work I need to add Field1 of table2 in the entity key.
- it's not that i need the first record, i just want any description. It's not worth it to get two nodes in the xml with just different description. So i thought instead of adding the entity key i can add somehow select first only, or should i make 4 virtual fields?