Hi All,
I have the below requirement:
EntityA (columns --> entitya_id, name1)
EntityB (columns --> entityb_id, name2)
EntityC
many to one relation to EntityA and also many to one relation to EntityB
columns --> entityc_id entitya_id entityb_id name3
EntityD -- many to one relation to EntityC
columns are --> entityd_id entityc_id name4
1) View should look like:
name1 name2 name3 name4
2) Main Form should like
name1 Textbox
name2 Textbox
name3 Textbox
name4 Textbox
save button
My main problems are:
Active view allows to show related fields, but when the data added - data shows some guid instead of actual data?
Main form allows to add the related entity's one field only as foreign key?
Please suggest how can i implement this scenario. Thank you.