How to get data by association

0
Hi, I have an entity named request and one more entity is worklog and both are associated by 1 to many    Data which is showing in below screen shot it is edit request in tabs and I want to retrieve worklogs based on this record   
asked
4 answers
1

Your domain model should look like this.

The list of worklog should be placed inside the dataview containing the request entity.

Datasource database, using the path Request>Request_Worklog>Worklog 

 

/// Edit///

Put your tab container inside the dataview request, instead of dataview request in side first tab container.

answered
0

In the tab ‘Worklog’, you can set the ‘datasource’ of the worklog’s datagrid to ‘over association’.

answered
0

I am trying to provide datasource association but nothing showing 

 

answered
0

This is my domain model for request and work log and one to many relation 

I am retrieving request directly from database I have a tab controll on UI 

in first Tab I have Descrioption which is edit Request and on worklog Tab I am trying to impliment complete crud operation of same record which I have Opened in first tab

 

 

Pleae guid me how can I do this 

 

answered