Association of entities

0
I created two entity User and DateSearch and connected them by 1-* association. I want to connect this DateSearch_User to data grid but it is not possible , how to resolve this problem??
asked
1 answers
1

What do you want to show in the datagrid exactly?

If you want to show all datesearch objects belonging to the current user, you could set the datagrid to datasource xpath and use this xpath constraint:

[ModuleName.DateSearch_User = '[%CurrentUser%]']

answered